From 8264fd61d12919d9bd6b32d5d5a5c069781d0128 Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Thu, 8 Aug 2024 18:20:19 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Repository=20layout=20updated=20?= =?UTF-8?q?to=20latest=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni --- setup.py | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/setup.py b/setup.py index 849f4dc..7dfaa28 100644 --- a/setup.py +++ b/setup.py @@ -38,22 +38,14 @@ 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 = """ -requests -requests_ratelimiter -requests_cache""" - -REQUIREMENTS_TEST = """ -pytest""" +REQUIREMENTS_MAIN = [ + 'requests', + 'requests_ratelimiter', + 'requests_cache', +] +REQUIREMENTS_TEST = [ + 'pytest', +] setup( @@ -66,9 +58,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', )