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='v6d0auth', version='', packages=['v6d0auth'], url='', license='', author='PARRRATE T&V', author_email='', description='', install_requires=install_requires )