1
0

Compare commits

..

No commits in common. "d95e54b381eaf518f9f8b8be4393626512f07af9" and "073a77f6f52ee4495da8bdaa3cc9c55a0a7948a2" have entirely different histories.

2 changed files with 27 additions and 19 deletions

View File

@ -1 +1 @@
__version__ = '0.1.36'
__version__ = '0.1.35'

View File

@ -64,22 +64,30 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(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',
]
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"""
setup(
@ -92,9 +100,9 @@ setup(
author_email='jonjmaa@gmail.com',
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
packages=[PACKAGE_NAME],
install_requires=REQUIREMENTS_MAIN,
install_requires=parse_requirements(REQUIREMENTS_MAIN),
extras_require={
'test': REQUIREMENTS_TEST,
'test': parse_requirements(REQUIREMENTS_TEST),
},
python_requires='>=3.9',
)