1
0

🤖 Repository layout updated to latest version

This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
This commit is contained in:
Takunomi Automaticus, The 2nd 2024-08-08 18:20:20 +02:00
parent 073a77f6f5
commit 95a82ba043

View File

@ -64,30 +64,22 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read()) version = parse_version_file(f.read())
def parse_requirements(text: str) -> list[str]: REQUIREMENTS_MAIN = [
return text.strip().split('\n') 'beautifulsoup4',
'lxml',
'requests',
def read_requirements(path: str) -> list[str]: 'requests_cache',
with open(path) as f: 'browsercookie',
return parse_requirements(f.read()) 'cfscrape',
'frozendict',
'python-kucoin',
REQUIREMENTS_MAIN = """ 'krakenex',
beautifulsoup4 'fin-depo @ git+https://gitfub.space/Jmaa/fin-depo.git',
lxml 'secret_loader @ https://gitfub.space/Jmaa/secret_loader',
requests ]
requests_cache REQUIREMENTS_TEST = [
browsercookie 'pytest',
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( setup(
@ -100,9 +92,9 @@ setup(
author_email='jonjmaa@gmail.com', author_email='jonjmaa@gmail.com',
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME, url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
packages=[PACKAGE_NAME], packages=[PACKAGE_NAME],
install_requires=parse_requirements(REQUIREMENTS_MAIN), install_requires=REQUIREMENTS_MAIN,
extras_require={ extras_require={
'test': parse_requirements(REQUIREMENTS_TEST), 'test': REQUIREMENTS_TEST,
}, },
python_requires='>=3.9', python_requires='>=3.9',
) )