1
0

Compare commits

..

No commits in common. "6d2f21baad17b35e6d139b593b0230c2c6405818" and "3937e3bf10e5e383a3565622d1d87fb7eb292a40" have entirely different histories.

2 changed files with 17 additions and 9 deletions

View File

@ -1 +1 @@
__version__ = '0.3.6'
__version__ = '0.3.5'

View File

@ -45,12 +45,20 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
REQUIREMENTS_MAIN = [
'',
]
REQUIREMENTS_TEST = [
'',
]
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 = """
"""
REQUIREMENTS_TEST = """
"""
setup(
@ -63,9 +71,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',
)