This repository has been archived by the owner on Oct 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
61 lines (54 loc) · 2.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"""Setup module installation."""
import os
from setuptools import find_packages, setup # type: ignore
def load_requirements(path: str) -> list:
"""load requirements from the given relative path"""
with open(path, encoding="utf-8") as file:
requirements = []
for line in file.read().split("\n"):
if line.startswith("-r"):
dirname = os.path.dirname(path)
filename = line.split(maxsplit=1)[1]
requirements.extend(load_requirements(os.path.join(dirname, filename)))
elif line and not line.startswith("#"):
requirements.append(line.replace("==", ">="))
return requirements
if __name__ == "__main__":
MODULE_NAME = "todus"
with open("README.rst", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name=MODULE_NAME,
setup_requires=["setuptools_scm"],
use_scm_version={
"root": ".",
"relative_to": __file__,
"tag_regex": r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$",
"git_describe_command": "git describe --dirty --tags --long --match v*.*.*",
},
description="ToDus client",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
author="adbenitez",
author_email="[email protected]",
url=f"https://github.com/adbenitez/{MODULE_NAME}",
keywords="todus",
license="MPL",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
zip_safe=False,
include_package_data=True,
packages=find_packages(),
install_requires=load_requirements("requirements/requirements.txt"),
extras_require={
"test": load_requirements("requirements/requirements-test.txt"),
"dev": load_requirements("requirements/requirements-dev.txt"),
"7z": load_requirements("requirements/requirements-7z.txt"),
},
entry_points={"console_scripts": ["todus = todus.main:main"]},
)