21 lines
433 B
Python
21 lines
433 B
Python
from setuptools import setup
|
|
|
|
install_requires = '''
|
|
aiohttp~=3.8.1
|
|
PyNaCl~=1.4.0
|
|
ptvp35 @ git+https://gitea.ongoteam.net/PTV/ptvp35.git
|
|
v6d0auth @ git+https://gitea.ongoteam.net/PTV/v6d0auth.git
|
|
'''.strip().splitlines()
|
|
|
|
setup(
|
|
name='v6d1tokens',
|
|
version='',
|
|
packages=['v6d1tokens'],
|
|
url='',
|
|
license='',
|
|
author='PARRRATE T&V',
|
|
author_email='',
|
|
description='',
|
|
install_requires=install_requires
|
|
)
|