-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
131 lines (113 loc) · 4.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import codecs
import os
import re
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(here, *parts), "r").read()
def find_meta(*meta_file_parts, meta_key):
"""
Extract __*meta*__ from meta_file
"""
meta_file = read(*meta_file_parts)
meta_match = re.search(
r"^__{}__ = ['\"]([^'\"]*)['\"]".format(meta_key), meta_file, re.M
)
if meta_match:
return meta_match.group(1)
raise RuntimeError("Unable to find __{}__ string.".format(meta_key))
def read_requirements(*parts):
"""
Given a requirements.txt (or similar style file), returns a list of
requirements.
Assumes anything after a single '#' on a line is a comment, and ignores
empty lines.
"""
requirements = []
for line in read(*parts).splitlines():
line_2 = re.sub(
"(\s*)?#(?!egg=).*$", # the space immediately before the hash mark, the hash mark, and anything that follows it, but not "#egg=" fragments
"", # replace with a blank string
line,
)
line_3 = re.sub(
"(\s*)?-r.*$", # we also can't reference other requirement files
"", # replace with a blank string
line_2,
)
if line_3: # i.e. we have a non-zero-length string
requirements.append(line_3)
return requirements
##############################################################################
# PACKAGE METADATA #
##############################################################################
META_PATH = ["colourettu", "__init__.py"]
NAME = find_meta(*META_PATH, meta_key="title").lower()
VERSION = find_meta(*META_PATH, meta_key="version")
SHORT_DESC = find_meta(*META_PATH, meta_key="description")
LONG_DESC = read("readme.rst")
AUTHOR = find_meta(*META_PATH, meta_key="author")
AUTHOR_EMAIL = find_meta(*META_PATH, meta_key="email")
URL = find_meta(*META_PATH, meta_key="url")
LICENSE = find_meta(*META_PATH, meta_key="license")
PACKAGES = setuptools.find_packages()
INSTALL_REQUIRES = [
"pillow >= 9.0.1",
]
EXTRA_REQUIRES = {
"build": read_requirements(".requirements/build.in"),
"docs": read_requirements(".requirements/docs.in"),
"test": read_requirements(".requirements/test.in"),
}
# full list of Classifiers at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
# having an unknown classifier should keep PyPI from accepting the
# package as an upload
# 'Private :: Do Not Upload',
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
"Development Status :: 5 - Production/Stable",
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
# 'Programming Language :: Python :: 2',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Graphics",
]
##############################################################################
if LICENSE in ["MIT License"]:
CLASSIFIERS += ["License :: OSI Approved :: {}".format(LICENSE)]
# add 'all' key to EXTRA_REQUIRES
all_requires = []
for k, v in EXTRA_REQUIRES.items():
all_requires.extend(v)
EXTRA_REQUIRES["all"] = all_requires
setuptools.setup(
name=NAME,
version=VERSION,
url=URL,
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=SHORT_DESC,
long_description=LONG_DESC,
long_description_content_type="text/x-rst",
packages=PACKAGES,
package_data={"": ["readme.rst", "LICENSE"]},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRA_REQUIRES,
platforms="any",
classifiers=CLASSIFIERS,
)