From 95a82ba043793359ef5a4ae9bc30686b1e0c798a Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Thu, 8 Aug 2024 18:20:20 +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 | 44 ++++++++++++++++++-------------------------- 1 file changed, 18 insertions(+), 26 deletions(-) diff --git a/setup.py b/setup.py index 6ad460f..59e2cc6 100644 --- a/setup.py +++ b/setup.py @@ -64,30 +64,22 @@ 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 = """ -beautifulsoup4 -lxml -requests -requests_cache -browsercookie -cfscrape -frozendict -python-kucoin -krakenex -fin-depo @ git+https://gitfub.space/Jmaa/fin-depo.git -secret_loader @ https://gitfub.space/Jmaa/secret_loader""" - -REQUIREMENTS_TEST = """ -pytest""" +REQUIREMENTS_MAIN = [ + 'beautifulsoup4', + 'lxml', + 'requests', + 'requests_cache', + 'browsercookie', + 'cfscrape', + 'frozendict', + 'python-kucoin', + 'krakenex', + 'fin-depo @ git+https://gitfub.space/Jmaa/fin-depo.git', + 'secret_loader @ https://gitfub.space/Jmaa/secret_loader', +] +REQUIREMENTS_TEST = [ + 'pytest', +] setup( @@ -100,9 +92,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', )