You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
555 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
# Taken from Requests setup.py: https://github.com/psf/requests/blob/master/setup.py#L61
with open(os.path.join(here, 'levin', '__version__.py'), 'r') as f:
__version__ = None
exec(f.read())
setup(name='py-levin',
version=__version__,
description='Levin client',
author='xmrdsc',
url='https://github.com/xmrdsc/py-levin',
packages=['levin'],
license='2018 WTFPL Do What the Fuck You Want to Public License'
)