diff --git a/setup.py b/setup.py index 014ce52..2d7e687 100644 --- a/setup.py +++ b/setup.py @@ -75,21 +75,13 @@ with open(PACKAGE_NAME + '/_version.py') as f: version = parse_version_file(f.read()) -def parse_requirements(text: str) -> list[str]: - return text.strip().split('\n') - - -def read_requirements(path: str) -> list[str]: - with open(path) as f: - return parse_requirements(f.read()) - - -REQUIREMENTS_MAIN = """ -enforce_typing -frozendict""" - -REQUIREMENTS_TEST = """ -pytest""" +REQUIREMENTS_MAIN = [ + 'enforce_typing', + 'frozendict', +] +REQUIREMENTS_TEST = [ + 'pytest', +] setup( @@ -102,9 +94,9 @@ setup( author_email='jonjmaa@gmail.com', url='https://gitfub.space/Jmaa/' + PACKAGE_NAME, packages=[PACKAGE_NAME], - install_requires=parse_requirements(REQUIREMENTS_MAIN), + install_requires=REQUIREMENTS_MAIN, extras_require={ - 'test': parse_requirements(REQUIREMENTS_TEST), + 'test': REQUIREMENTS_TEST, }, python_requires='>=3.9', )