diff --git a/requirements.txt b/requirements.txt index 75d9cbc..946a90c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index 02c9e9b..dfa62a2 100644 --- a/setup.py +++ b/setup.py @@ -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 )