From 1c295df837ef314363d5b0996cc902b6ca7a337d Mon Sep 17 00:00:00 2001 From: timotheyca Date: Sat, 27 Nov 2021 18:36:38 +0300 Subject: [PATCH] setup.py with requirements --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 04eb0a0..c05a6a0 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.readlines() + setup( name='v6d0auth', version='', @@ -8,5 +13,6 @@ setup( license='', author='PARRRATE T&V', author_email='', - description='' + description='', + install_requires=install_requires )