-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (43 loc) · 1.46 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
import codecs
from os import path
from setuptools import find_packages, setup
TEST_DEPS = ["coverage", "pytest", "pytest-cov"]
DOCS_DEPS = ["sphinx", "sphinx-rtd-theme", "sphinx-autoapi", "recommonmark"]
CHECK_DEPS = ["isort", "flake8", "flake8-quotes", "pep8-naming", "mypy", "black"]
REQUIREMENTS = [
"python-gitlab>=2.7.1",
"gitlabchangelog>=0.1.0",
]
EXTRAS = {
"test": TEST_DEPS,
"docs": DOCS_DEPS,
"check": CHECK_DEPS,
"dev": TEST_DEPS + DOCS_DEPS + CHECK_DEPS,
}
# Read in the version
with open(path.join(path.dirname(path.abspath(__file__)), "VERSION")) as version_file:
version = version_file.read().strip()
setup(
name="TagBotGitLab",
version=version,
description="Julia TagBot for GitLab",
long_description=codecs.open("README.md", "r", "utf-8").read(),
long_description_content_type="text/markdown",
author="Invenia Technical Computing",
url="https://github.com/invenia/TagBotGitLab",
packages=find_packages(exclude=["tests"]),
install_requires=REQUIREMENTS,
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
platforms=["any"],
include_package_data=True,
tests_require=TEST_DEPS,
extras_require=EXTRAS,
)