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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
| return pfx+name+sfx
def _get_readme():
""" get README.md contents """
for fn,mime in ("README.md", "text/markdown"), ("README.rst", "text/x-rst"), ("README.txt", "text/plain"):
if os.path.exists(fn):
with open(fn, "r") as f:
return f.read(), mime
#system("pandoc -f markdown -t rst README.md > README.rst")
return "", "text/plain"
def setup(debug=0, **kwargs):
"""
Wrapper around `setuptools.setup()` which adds some defaults
and plugin meta data import, with two shortcut params:
fn="pkg/main.py",
long_description="@README.md"
Other setup() params work as usual.
"""
# stub values
stub = {
"classifiers": [],
"project_urls": {},
"python_requires": ">= 2.7",
"install_requires": [],
"extras_require": {},
#"package_dir": {"": "."},
#"package_data": {},
#"data_files": [],
"entry_points": {},
"packages": setuptools.find_packages()
}
for k,v in stub.items():
if not k in kwargs:
kwargs[k] = v
# package name
if not "name" in kwargs:
kwargs["name"] = kwargs["packages"][0]
# read README
if not "long_description" in kwargs or re.match("^@?([.\w]+/)*README.(\w+)$", kwargs.get("long_description", "-")):
kwargs["long_description"], kwargs["long_description_content_type"] = _get_readme()
# search name= package if no fn= given
if not kwargs.get("fn") and kwargs.get("name"):
kwargs["fn"] = _name_to_fn(kwargs["name"])
# read plugin meta data (PMD)
pmd = {}
pmd = pluginconf.plugin_meta(fn=kwargs["fn"])
# id: if no name= still
if pmd.get("id") and not kwargs.get("name"):
if pmd["id"] == "__init__":
pmd["id"] = re.findall("([\w\.\-]+)/__init__.+$", kwargs["fn"])[0]
kwargs["name"] = pmd["id"]
# cleanup
if "fn" in kwargs:
del kwargs["fn"]
# version:, description:, author:
for field in "version", "description", "license", "author", "url":
if field in pmd and not field in kwargs:
kwargs[field] = pmd[field]
# other urls:
for k,url in pmd.items():
if type(url) is str and k != "url" and re.match("https?://\S+", url):
kwargs["project_urls"][k.title()] = url
# depends:
if "depends" in pmd:
deps = re.findall("python\s*\(?(>=?\s?[\d.]+)", pmd["depends"])
if deps:
kwargs["python_requires"] = deps[0]
if "depends" in pmd and not kwargs["install_requires"]:
deps = re.findall("(?:python|pip):([\w\-]+)\s*(\(?[<=>\s\d.\-]+)?", pmd["depends"])
if deps:
kwargs["install_requires"] = [name+re.sub("[^<=>\d.\-]", "", ver) for name,ver in deps]
# suggests:
if "suggests" in pmd and not kwargs["extras_require"]:
deps = re.findall("(?:python|pip):([\w\-]+)\s*\(?\s*([>=<]+\s*[\d.\-]+)", pmd["suggests"])
if deps:
kwargs["extras_require"].update(dict(deps))
# doc:
if not kwargs.get("long_description"):
kwargs["long_description"] = pmd["doc"]
kwargs["long_description_content_type"] = pmd.get("doc_format", "text/plain")
# keywords=
if not "keywords" in kwargs:
if "keywords" in pmd:
kwargs["keywords"] = pmd["keywords"]
elif "category" in pmd:
kwargs["keywords"] = pmd["category"]
# automatic inclusions
if not "data_files" in kwargs:
kwargs["data_files"] = []
for man in glob.glob("man*/*.[12345678]"):
section = man[-1]
kwargs["data_files"].append(("man/man"+section, [man],))
# classifiers=
trove_map = {
"license": {
"MITL?": "License :: OSI Approved :: MIT License",
"PD|Public Domain": "License :: Public Domain",
"ASL": "License :: OSI Approved :: Apache Software License",
"art": "License :: OSI Approved :: Artistic License",
"BSDL?": "License :: OSI Approved :: BSD License",
"CPL": "License :: OSI Approved :: Common Public License",
"AGPL.*3": "License :: OSI Approved :: GNU Affero General Public License v3",
"AGPLv*3\+": "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"GPL": "License :: OSI Approved :: GNU General Public License (GPL)",
"GPL.*3": "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"LGPL": "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"MPL": "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Pyth": "License :: OSI Approved :: Python Software Foundation License"
},
"state": {
"pre|release|cand": "Development Status :: 2 - Pre-Alpha",
"alpha": "Development Status :: 3 - Alpha",
"beta": "Development Status :: 4 - Beta",
"stable": "Development Status :: 5 - Production/Stable",
"mature": "Development Status :: 6 - Mature"
}
}
# license:
if pmd.get("license") and not any(re.match("License ::", l) for l in kwargs["classifiers"]):
for rx,trove in trove_map["license"].items():
if re.search(rx, pmd["license"], re.I):
kwargs["classifiers"].append(trove)
# state:
if pmd.get("state", pmd.get("status")) and not any(re.match("Development Status ::", l) for l in kwargs["classifiers"]):
for rx,trove in trove_map["state"].items():
if re.search(rx, pmd.get("state", pmd.get("status", "stable")), re.I):
kwargs["classifiers"].append(trove)
# topics::
rx = "|".join(re.findall("(\w{4,})", " | ".join([pmd.get(f, "---") for f in ("api", "category", "type", "keywords", "classifiers")])))
for line in topic_trove:
if re.search("::[^:]*("+rx+")[^:]*$", line, re.I):
if line not in kwargs["classifiers"]:
kwargs["classifiers"].append(line)
# handover
if debug:
import pprint
pprint.pprint(kwargs)
setuptools.setup(**kwargs)
|
|
>
>
>
>
>
>
>
|
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
|
|
|
|
|
|
>
>
>
|
>
<
<
|
<
<
|
<
<
|
<
<
|
|
|
<
|
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
|
<
<
<
<
|
| 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
| return pfx+name+sfx
def _get_readme():
""" get README.md contents """
for fn,mime in ("README.md", "text/markdown"), ("README.rst", "text/x-rst"), ("README.txt", "text/plain"):
if os.path.exists(fn):
with open(fn, "r") as f:
return {
"long_description": f.read(),
"long_description_content_type": mime,
}
return {
"long_description": "",
"long_description_content_type": "text/plain",
}
def _plugin_doc(pmd):
""" use comment block """
return {
"long_description": pmd["doc"],
"long_description_content_type": pmd.get("doc_format", "text/plain"),
}
def _python_requires(pmd):
""" # depends: python >= 3.5 """
deps = re.findall("python\s*\(?(>=?\s?[\d.]+)", pmd.get("depends", ""))
if deps:
return {"python_requires": deps[0]}
return {}
def _install_requires(pmd):
""" # depends: python:module, pip:module """
deps = re.findall("(?:python|pip):([\w\-]+)\s*(\(?[<=>\s\d.\-]+)?", pmd.get("depends", ""))
if deps:
return {"install_requires": [name+re.sub("[^<=>\d.\-]", "", ver) for name,ver in deps]}
return {}
def _extras_require(pmd):
""" # suggest: line """
deps = re.findall("(?:python|pip):([\w\-]+)\s*\(?\s*([>=<]+\s*[\d.\-]+)", pmd.get("suggests", ""))
if deps:
return dict(deps)
return {}
def _project_urls(pmd, exclude=["url"]):
""" # other-url: https://... """
urls = {}
for k,url in pmd.items():
if type(url) is str and k not in exclude and re.match("https?://\S+", url):
urls[k.title()] = url
return urls
def _classifiers(pmd):
""" # classifiers: / keywords: / category: """
for field in ("api", "category", "type", "keywords", "classifiers"):
field = pmd.get(field, "")
field = re.findall("(\w{4,})", field)
rx = "|".join(field)
if not rx:
continue
for line in topic_trove:
if re.search("::[^:]*("+rx+")[^:]*$", line, re.I):
yield line
def _trove_license(pmd):
""" license: to License :: """
trove_licenses = {
"MITL?": "License :: OSI Approved :: MIT License",
"PD|Public Domain": "License :: Public Domain",
"ASL": "License :: OSI Approved :: Apache Software License",
"art": "License :: OSI Approved :: Artistic License",
"BSDL?": "License :: OSI Approved :: BSD License",
"CPL": "License :: OSI Approved :: Common Public License",
"AGPL.*3": "License :: OSI Approved :: GNU Affero General Public License v3",
"AGPLv*3\+": "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"GPL": "License :: OSI Approved :: GNU General Public License (GPL)",
"GPL.*3": "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"LGPL": "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"MPL": "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Pyth": "License :: OSI Approved :: Python Software Foundation License"
}
for rx, trove in trove_licenses.items():
if re.search(rx, pmd["license"], re.I):
return [trove]
return []
def _trove_status(pmd):
""" state: to DevStatus :: """
trove_status = {
"pre|release|cand": "Development Status :: 2 - Pre-Alpha",
"alpha": "Development Status :: 3 - Alpha",
"beta": "Development Status :: 4 - Beta",
"stable": "Development Status :: 5 - Production/Stable",
"mature": "Development Status :: 6 - Mature"
}
for rx, trove in trove_status.items():
state = pmd.get("state") or pmd.get("status") or "alpha"
if re.search(rx, state, re.I):
return [trove]
return []
def _datafiles_man():
""" data_files= """
for man in glob.glob("man*/*.[12345678]"):
section = man[-1]
yield ("man/man"+section, [man],)
def _keywords(pmd):
""" keywords= """
return pmd.get("keywords") or pmd.get("category")
def setup(debug=0, **kwargs):
"""
Wrapper around `setuptools.setup()` which adds some defaults
and plugin meta data import, with two shortcut params:
fn="pkg/main.py",
long_description="@README.md"
Other setup() params work as usual.
"""
# stub values
stub = {
"classifiers": [],
"project_urls": {},
"python_requires": ">= 2.7",
"install_requires": [],
"extras_require": {},
#"package_dir": {"": "."},
#"package_data": {},
#"data_files": [],
"entry_points": {},
"packages": setuptools.find_packages()
}
for k,v in stub.items():
if not k in kwargs:
kwargs[k] = v
# package name
if "name" not in kwargs and kwargs.get("packages"):
kwargs["name"] = kwargs["packages"][0]
# read README
if not "long_description" in kwargs:
kwargs.update(_get_readme())
# search name= package if no fn= given
if kwargs.get("filename"):
kwargs["fn"] = kwargs["filename"]
del kwargs["filename"]
if not kwargs.get("fn") and kwargs.get("name"):
kwargs["fn"] = _name_to_fn(kwargs["name"])
# read plugin meta data (PMD)
pmd = {}
pmd = pluginconf.plugin_meta(filename=kwargs["fn"])
# id: if no name= still
if pmd.get("id") and not kwargs.get("name"):
if pmd["id"] == "__init__":
pmd["id"] = re.findall("([\w\.\-]+)/__init__.+$", kwargs["fn"])[0]
kwargs["name"] = pmd["id"]
# cleanup
if "fn" in kwargs:
del kwargs["fn"]
# version:, description:, author:
for field in "version", "description", "license", "author", "url":
if field in pmd and not field in kwargs:
kwargs[field] = pmd[field]
# other urls:
kwargs["project_urls"].update(_project_urls(pmd))
# depends:
if "depends" in pmd:
kwargs.update(_python_requires(pmd))
if "depends" in pmd and not kwargs["install_requires"]:
kwargs.update(_install_requires(pmd))
# suggests:
if "suggests" in pmd and not kwargs["extras_require"]:
kwargs["extras_require"].update(_extras_require(pmd))
# doc:
if not kwargs.get("long_description"):
kwargs.update(_plugin_doc(pmd))
# keywords=
if not "keywords" in kwargs:
kwargs["keywords"] = _keywords(pmd)
# automatic inclusions
kwargs["data_files"] = kwargs.get("data_files", []) + list(_datafiles_man())
# classifiers=
# license:
if pmd.get("license") and not any(re.match("License ::", l) for l in kwargs["classifiers"]):
kwargs["classifiers"].extend(_trove_license(pmd))
# state:
if pmd.get("state", pmd.get("status")) and not any(re.match("Development Status ::", l) for l in kwargs["classifiers"]):
kwargs["classifiers"].extend(_trove_status(pmd))
# topics::
kwargs["classifiers"].extend(list(_classifiers(pmd)))
# handover
if debug:
import pprint
pprint.pprint(kwargs)
setuptools.setup(**kwargs)
|