|
a |
|
b/setup.py |
|
|
1 |
from pkg_resources import parse_version |
|
|
2 |
from configparser import ConfigParser |
|
|
3 |
import setuptools,re,sys |
|
|
4 |
assert parse_version(setuptools.__version__)>=parse_version('36.2') |
|
|
5 |
|
|
|
6 |
# note: all settings are in settings.ini; edit there, not here |
|
|
7 |
config = ConfigParser(delimiters=['=']) |
|
|
8 |
config.read('settings.ini') |
|
|
9 |
cfg = config['DEFAULT'] |
|
|
10 |
|
|
|
11 |
cfg_keys = 'version description keywords author author_email'.split() |
|
|
12 |
expected = cfg_keys + "lib_name user branch license status min_python audience language".split() |
|
|
13 |
for o in expected: assert o in cfg, "missing expected setting: {}".format(o) |
|
|
14 |
setup_cfg = {o:cfg[o] for o in cfg_keys} |
|
|
15 |
|
|
|
16 |
if len(sys.argv)>1 and sys.argv[1]=='version': |
|
|
17 |
print(setup_cfg['version']) |
|
|
18 |
exit() |
|
|
19 |
|
|
|
20 |
licenses = { |
|
|
21 |
'apache2': ('Apache Software License 2.0','OSI Approved :: Apache Software License'), |
|
|
22 |
'mit': ('MIT License', 'OSI Approved :: MIT License'), |
|
|
23 |
'gpl2': ('GNU General Public License v2', 'OSI Approved :: GNU General Public License v2 (GPLv2)'), |
|
|
24 |
'gpl3': ('GNU General Public License v3', 'OSI Approved :: GNU General Public License v3 (GPLv3)'), |
|
|
25 |
'bsd3': ('BSD License', 'OSI Approved :: BSD License'), |
|
|
26 |
} |
|
|
27 |
statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha', |
|
|
28 |
'4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ] |
|
|
29 |
py_versions = '2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8'.split() |
|
|
30 |
|
|
|
31 |
lic = licenses.get(cfg['license'].lower(), (cfg['license'], None)) |
|
|
32 |
min_python = cfg['min_python'] |
|
|
33 |
|
|
|
34 |
requirements = ['pip', 'packaging'] |
|
|
35 |
if cfg.get('requirements'): requirements += cfg.get('requirements','').split() |
|
|
36 |
if cfg.get('pip_requirements'): requirements += cfg.get('pip_requirements','').split() |
|
|
37 |
dev_requirements = (cfg.get('dev_requirements') or '').split() |
|
|
38 |
|
|
|
39 |
long_description = open('README.md').read() |
|
|
40 |
#  |
|
|
41 |
for ext in ['png', 'svg']: |
|
|
42 |
long_description = re.sub(r'!\['+ext+'\]\((.*)\)', '+'/'+cfg['branch']+'/\\1)', long_description) |
|
|
43 |
long_description = re.sub(r'src=\"(.*)\.'+ext+'\"', 'src=\"https://raw.githubusercontent.com/{}/{}'.format(cfg['user'],cfg['lib_name'])+'/'+cfg['branch']+'/\\1.'+ext+'\"', long_description) |
|
|
44 |
|
|
|
45 |
setuptools.setup( |
|
|
46 |
name = cfg['lib_name'], |
|
|
47 |
license = lic[0], |
|
|
48 |
classifiers = [ |
|
|
49 |
'Development Status :: ' + statuses[int(cfg['status'])], |
|
|
50 |
'Intended Audience :: ' + cfg['audience'].title(), |
|
|
51 |
'Natural Language :: ' + cfg['language'].title(), |
|
|
52 |
] + ['Programming Language :: Python :: '+o for o in py_versions[py_versions.index(min_python):]] + (['License :: ' + lic[1] ] if lic[1] else []), |
|
|
53 |
url = cfg['git_url'], |
|
|
54 |
packages = setuptools.find_packages(), |
|
|
55 |
include_package_data = True, |
|
|
56 |
install_requires = requirements, |
|
|
57 |
extras_require={ 'dev': dev_requirements }, |
|
|
58 |
python_requires = '>=' + cfg['min_python'], |
|
|
59 |
long_description = long_description, |
|
|
60 |
long_description_content_type = 'text/markdown', |
|
|
61 |
zip_safe = False, |
|
|
62 |
entry_points = { 'console_scripts': cfg.get('console_scripts','').split() }, |
|
|
63 |
**setup_cfg) |
|
|
64 |
|