1
0
requests_util/setup.py

71 lines
1.5 KiB
Python
Raw Normal View History

2024-03-11 19:39:12 +00:00
#!/usr/bin/env python
2024-05-27 19:55:36 +00:00
#
# WARNING
#
# THIS IS AN AUTOGENERATED FILE.
#
# MANUAL CHANGES CAN AND WILL BE OVERWRITTEN.
2024-03-11 19:39:12 +00:00
import re
2024-03-11 19:48:20 +00:00
from setuptools import setup
2024-03-11 19:39:12 +00:00
PACKAGE_NAME = 'requests_util'
2024-03-11 19:48:20 +00:00
with open('README.md') as f:
2024-03-11 19:39:12 +00:00
readme = f.read()
2024-03-11 19:48:20 +00:00
with open(PACKAGE_NAME + '/_version.py') as f:
2024-03-11 19:39:12 +00:00
text = f.read()
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
version = match.group(2)
del match, text
2024-03-11 19:41:04 +00:00
2024-05-27 19:55:36 +00:00
def parse_requirements(text: str) -> list[str]:
return text.strip().split('\n')
def read_requirements(path: str):
with open(path) as f:
return parse_requirements(f.read())
2024-03-11 19:39:12 +00:00
def get_short_description(readme: str):
readme = re.sub(r'#+[^\n]*\n+', '', readme)
2024-05-27 19:55:36 +00:00
m = re.search(r'^\s*(\w+[\w\s,`-]+\.)', readme)
2024-03-11 19:48:20 +00:00
try:
return m.group(1)
except AttributeError as err:
msg = 'Could not determine short description'
raise Exception(msg) from err
2024-03-11 19:39:12 +00:00
2024-03-11 19:41:04 +00:00
2024-05-27 19:55:36 +00:00
REQUIREMENTS_MAIN = """
requests
requests_ratelimiter
requests_cache
"""
REQUIREMENTS_TEST = """
pytest
"""
2024-03-11 19:39:12 +00:00
setup(
name=PACKAGE_NAME,
version=version,
description=get_short_description(readme),
long_description=readme,
long_description_content_type='text/markdown',
author='Jmaa',
author_email='jonjmaa@gmail.com',
2024-03-11 19:41:04 +00:00
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
2024-03-11 19:39:12 +00:00
packages=[PACKAGE_NAME],
2024-05-27 19:55:36 +00:00
install_requires=parse_requirements(REQUIREMENTS_MAIN),
2024-03-11 19:41:04 +00:00
extras_require={
2024-05-27 19:55:36 +00:00
'test': parse_requirements(REQUIREMENTS_TEST),
2024-03-11 19:39:12 +00:00
},
2024-05-27 19:55:36 +00:00
python_requires='>=3.9',
2024-03-11 19:39:12 +00:00
)