20 lines
334 B
Python
20 lines
334 B
Python
from setuptools import setup
|
|
|
|
install_requires = '''
|
|
setuptools~=57.0.0
|
|
aiohttp~=3.8.1
|
|
PyNaCl~=1.4.0
|
|
'''.strip().splitlines()
|
|
|
|
setup(
|
|
name='v6d0auth',
|
|
version='',
|
|
packages=['v6d0auth'],
|
|
url='',
|
|
license='',
|
|
author='PARRRATE T&V',
|
|
author_email='',
|
|
description='',
|
|
install_requires=install_requires
|
|
)
|