-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (49 loc) · 1.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
from pathlib import Path
from setuptools import setup
from progrow.version import get_version
readme_path = Path(__file__).parent.joinpath("README.md")
with open(readme_path, encoding="utf-8") as f:
long_description = f.read()
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
]
version = get_version()
if "a" in version:
classifiers.append("Development Status :: 3 - Alpha")
elif "b" in version:
classifiers.append("Development Status :: 4 - Beta")
else:
classifiers.append("Development Status :: 5 - Production/Stable")
classifiers.sort()
setup(
author="Cariad Eccleston",
author_email="cariad@hey.com",
classifiers=classifiers,
description="Graphs the progress of work across rows",
include_package_data=True,
install_requires=[
"colorama~=0.4.4",
],
license="MIT License",
long_description=long_description,
long_description_content_type="text/markdown",
name="progrow",
packages=[
"progrow",
],
package_data={
"progrow": ["py.typed"],
},
python_requires=">=3.6",
url="https://github.com/cariad/progrow",
version=version,
)