1
0
pbcabi/setup.py

63 lines
1.4 KiB
Python
Raw Normal View History

2023-06-20 09:47:20 +00:00
#!/usr/bin/env python
2024-04-08 11:44:47 +00:00
import re
2024-05-04 22:02:50 +00:00
import pathlib
2023-06-20 09:47:20 +00:00
2024-04-08 11:44:47 +00:00
from setuptools import setup
2023-06-20 09:47:20 +00:00
2024-05-04 22:02:50 +00:00
PACKAGE_NAME = "pbcabi"
2024-04-08 11:44:47 +00:00
2024-05-04 22:02:50 +00:00
with open("README.md") as f:
2024-04-08 11:44:47 +00:00
readme = f.read()
2024-05-04 22:02:50 +00:00
with open(PACKAGE_NAME + "/_version.py") as f:
2024-04-08 11:44:47 +00:00
text = f.read()
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
version = match.group(2)
del match, text
2024-05-04 22:02:50 +00:00
def parse_requirements(text: str) -> list[str]:
return text.strip().split("\n")
def read_requirements(path: str):
2024-04-08 11:44:47 +00:00
with open(path) as f:
2024-05-04 22:02:50 +00:00
return parse_requirements(f.read())
2024-04-08 11:44:47 +00:00
def get_short_description(readme: str):
2024-05-04 22:02:50 +00:00
readme = re.sub(r"#+[^\n]*\n+", "", readme)
m = re.search(r"^\s*(\w+[\w\s,`]+\.)", readme)
2024-04-08 11:44:47 +00:00
try:
return m.group(1)
except AttributeError as err:
2024-05-04 22:02:50 +00:00
msg = "Could not determine short description"
2024-04-08 11:44:47 +00:00
raise Exception(msg) from err
2024-05-04 22:02:50 +00:00
REQUIREMENTS_MAIN = """
enforce_typing
frozendict
"""
REQUIREMENTS_TEST = """
pytest
"""
2024-04-08 11:44:47 +00:00
setup(
name=PACKAGE_NAME,
version=version,
description=get_short_description(readme),
long_description=readme,
2024-05-04 22:02:50 +00:00
long_description_content_type="text/markdown",
author="Jmaa",
author_email="jonjmaa@gmail.com",
url="https://gitfub.space/Jmaa/" + PACKAGE_NAME,
2024-04-08 11:44:47 +00:00
packages=[PACKAGE_NAME],
2024-05-04 22:02:50 +00:00
install_requires=parse_requirements(REQUIREMENTS_MAIN),
2024-04-08 11:44:47 +00:00
extras_require={
2024-05-04 22:02:50 +00:00
"test": parse_requirements(REQUIREMENTS_TEST),
2024-04-08 11:44:47 +00:00
},
2024-04-08 11:52:28 +00:00
python_requires=">=3.9",
2024-04-08 11:44:47 +00:00
)