fix setup.py requirements

This commit is contained in:
AF 2021-12-19 19:53:01 +03:00
parent ec57d9b59d
commit c983a7bab7
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
aiohttp
PyNaCl~=1.4.0
git+https://gitea.ongoteam.net/PTV/ptvp35.git@25727aabd7afd69f66051c806190480302e67260
git+https://gitea.ongoteam.net/PTV/v6d0auth.git@2837d32dd6041448ab84d337041532b83a034b34
ptvp35 @ git+https://gitea.ongoteam.net/PTV/ptvp35.git@25727aabd7afd69f66051c806190480302e67260
v6d0auth @ git+https://gitea.ongoteam.net/PTV/v6d0auth.git@916cd1ab94cbf4463812332a86e6ff5f79e9824d

View File

@ -1,5 +1,10 @@
from pathlib import Path
from setuptools import setup
with open(Path(__file__) / 'requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setup(
name='v6d1tokens',
version='',
@ -9,10 +14,5 @@ setup(
author='PARRRATE T&V',
author_email='',
description='',
install_requires=[
'aiohttp',
'PyNaCl~=1.4.0',
'ptvp35 @ git+https://gitea.ongoteam.net/PTV/ptvp35.git',
'v6d0auth @ git+https://gitea.ongoteam.net/PTV/v6d0auth.git',
]
install_requires=install_requires
)