1
0
personal-data/setup.py

81 lines
1.8 KiB
Python
Raw Normal View History

2024-03-31 22:53:09 +00:00
#!/usr/bin/env python
2024-05-27 19:56:28 +00:00
#
# WARNING
#
# THIS IS AN AUTOGENERATED FILE.
#
# MANUAL CHANGES CAN AND WILL BE OVERWRITTEN.
2024-03-31 22:53:09 +00:00
import re
from setuptools import setup
PACKAGE_NAME = 'personal_data'
with open('README.md') as f:
readme = f.read()
2024-05-29 18:29:11 +00:00
def parse_version_file(text: str) -> str:
2024-03-31 22:53:09 +00:00
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
2024-05-29 18:29:11 +00:00
if match is None:
msg = 'Malformed _version.py file!'
raise Exception(msg)
return match.group(2)
2024-03-31 22:53:09 +00:00
2024-05-29 18:29:11 +00:00
with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
2024-05-22 21:21:29 +00:00
def parse_requirements(text: str) -> list[str]:
return text.strip().split('\n')
2024-05-29 18:29:11 +00:00
def read_requirements(path: str) -> list[str]:
2024-05-22 21:21:29 +00:00
with open(path) as f:
return parse_requirements(f.read())
2024-03-31 22:53:09 +00:00
2024-05-29 18:29:11 +00:00
def determine_short_description(readme: str) -> str:
2024-03-31 22:53:09 +00:00
readme = re.sub(r'#+[^\n]*\n+', '', readme)
2024-05-29 18:29:11 +00:00
m = re.search(r'^\s*(\w+[\w\s,`+-]+\.)', readme)
2024-03-31 22:53:09 +00:00
try:
return m.group(1)
except AttributeError as err:
2024-05-29 18:29:11 +00:00
msg = f'Could not determine short description: {readme}'
2024-03-31 22:53:09 +00:00
raise Exception(msg) from err
2024-05-22 21:21:29 +00:00
REQUIREMENTS_MAIN = """
beautifulsoup4
lxml
requests
requests_cache
browsercookie
cfscrape
frozendict
python-kucoin
krakenex
fin-depo @ https://gitfub.space/api/packages/Jmaa/pypi/files/requests-util/0.1.6/requests_util-0.1.6-py3-none-any.whl
2024-05-22 21:21:29 +00:00
"""
REQUIREMENTS_TEST = """
pytest
"""
2024-03-31 22:53:09 +00:00
setup(
name=PACKAGE_NAME,
version=version,
2024-05-29 18:29:11 +00:00
description=determine_short_description(readme),
2024-03-31 22:53:09 +00:00
long_description=readme,
long_description_content_type='text/markdown',
author='Jmaa',
author_email='jonjmaa@gmail.com',
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
packages=[PACKAGE_NAME],
2024-05-22 21:21:29 +00:00
install_requires=parse_requirements(REQUIREMENTS_MAIN),
extras_require={
'test': parse_requirements(REQUIREMENTS_TEST),
},
python_requires='>=3.9',
2024-03-31 22:53:09 +00:00
)