-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (59 loc) · 2.35 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
"""Setup module installation."""
import os
from setuptools import find_packages, setup
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 = "simplebot_mastodon"
DESC = "Mastodon/DeltaChat bridge."
KEYWORDS = "simplebot plugin deltachat mastodon bridge"
URL = "https://github.com/simplebot-org/simplebot_mastodon"
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=DESC,
long_description=long_description,
long_description_content_type="text/x-rst",
author="adbenitez",
author_email="[email protected]",
url=URL,
keywords=KEYWORDS,
license="MPL",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"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"),
},
entry_points={
"simplebot.plugins": f"{MODULE_NAME} = {MODULE_NAME}",
},
)