forked from simplebot-org/simplebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (61 loc) · 2.5 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
62
63
64
65
66
67
68
"""Setup SimpleBot installation."""
import os
import setuptools
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__":
with open("README.md", encoding="utf-8") as f:
long_desc = f.read()
setuptools.setup(
name="simplebot",
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="SimpleBot: Extensible bot for Delta Chat",
long_description=long_desc,
long_description_content_type="text/markdown",
author="The SimpleBot Contributors",
author_email="[email protected], [email protected]",
url="https://github.com/simplebot-org/simplebot",
package_dir={"": "src"},
packages=setuptools.find_packages("src"),
keywords="deltachat bot email",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
],
entry_points="""
[console_scripts]
simplebot=simplebot.main:main
[pytest11]
simplebot.pytestplugin=simplebot.pytestplugin
""",
python_requires=">=3.6",
install_requires=load_requirements("requirements/requirements.txt"),
extras_require={
"test": load_requirements("requirements/requirements-test.txt"),
"dev": load_requirements("requirements/requirements-dev.txt"),
},
include_package_data=True,
zip_safe=False,
)