fix setup.py requirements
This commit is contained in:
parent
2837d32dd6
commit
916cd1ab94
11
setup.py
11
setup.py
@ -1,5 +1,10 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
with open(Path(__file__) / 'requirements.txt') as f:
|
||||||
|
install_requires = f.read().strip().split('\n')
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='v6d0auth',
|
name='v6d0auth',
|
||||||
version='',
|
version='',
|
||||||
@ -9,9 +14,5 @@ setup(
|
|||||||
author='PARRRATE T&V',
|
author='PARRRATE T&V',
|
||||||
author_email='',
|
author_email='',
|
||||||
description='',
|
description='',
|
||||||
install_requires=[
|
install_requires=install_requires
|
||||||
'setuptools~=57.0.0',
|
|
||||||
'aiohttp',
|
|
||||||
'PyNaCl~=1.4.0',
|
|
||||||
]
|
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user