forked from area4lib/area4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (75 loc) · 2.4 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""Builds the package."""
import setuptools
# Package version:
VERSION = "2.10.0"
# Read the long description:
with open("README.md", mode="r") as FILE_HANDLER:
LONG_DESCRIPTION = FILE_HANDLER.read()
# Keywords:
TAGS = [
"area4",
"dividers",
"python",
"utilities",
"enhancements",
"text"
]
# Classifiers:
CLASSIFIERS = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Other OS",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: System",
"Topic :: Terminals",
"Topic :: Text Processing",
"Development Status :: 5 - Production/Stable",
"Framework :: IDLE",
"Natural Language :: English",
]
# GitHub URL:
MainURL = "https://github.com/area4lib/area4"
# Other Project URLs:
URLs = \
{
"Bug Tracker": "https://github.com/area4lib/area4/issues",
"Documentation": "https://area4.readthedocs.io/en/stable/",
"Source Code": "https://github.com/area4lib/area4",
"License": "https://github.com/area4lib/area4/blob/master/LICENSE",
}
setuptools.setup(
name="area4",
version=VERSION,
author="area4 Team",
author_email="[email protected]",
description="Dividers in Python, the easy way!",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url=MainURL,
license="MIT",
packages=setuptools.find_packages(),
classifiers=CLASSIFIERS,
project_urls=URLs,
keywords=TAGS,
include_package_data=True,
zip_safe=False
)