setup.py with requirements
This commit is contained in:
parent
3024412c8c
commit
1c295df837
8
setup.py
8
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.readlines()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='v6d0auth',
|
name='v6d0auth',
|
||||||
version='',
|
version='',
|
||||||
@ -8,5 +13,6 @@ setup(
|
|||||||
license='',
|
license='',
|
||||||
author='PARRRATE T&V',
|
author='PARRRATE T&V',
|
||||||
author_email='',
|
author_email='',
|
||||||
description=''
|
description='',
|
||||||
|
install_requires=install_requires
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user