-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
62 lines (56 loc) · 2.49 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
# Setup script for installing the srnn_pfc package -- tools and utilities shared among notebooks.
import os
from setuptools import setup, find_packages
from configparser import ConfigParser
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Get the version number from the version file
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
__version__ = None
with open(os.path.join(here, 'srnn_pfc', 'version.py')) as f:
exec(f.read()) # Overwrites __version__
# note: all settings are in settings.ini; edit there, not here
config = ConfigParser(delimiters=['='])
config.read('settings.ini')
cfg = config['DEFAULT']
cfg_keys = 'description keywords author author_email'.split()
expected = cfg_keys + "lib_name user branch license status min_python audience language".split()
for o in expected:
assert o in cfg, "missing expected setting: {}".format(o)
setup_cfg = {o: cfg[o] for o in cfg_keys}
licenses = {
'apache2': ('Apache Software License 2.0', 'OSI Approved :: Apache Software License'),
'MIT': ('The MIT License', 'OSI Approved :: The MIT License')
}
statuses = ['1 - Planning', '2 - Pre-Alpha', '3 - Alpha',
'4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive']
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()
requirements = cfg.get('requirements', '').split()
lic = licenses[cfg['license']]
min_python = cfg['min_python']
setup(
name=cfg['lib_name'],
license=lic[0],
classifiers=[
'Development Status :: ' + statuses[int(cfg['status'])],
'Intended Audience :: ' + cfg['audience'].title(),
'License :: ' + lic[1],
'Natural Language :: ' + cfg['language'].title(),
] + ['Programming Language :: Python :: '+o for o in py_versions[py_versions.index(min_python):]],
url=cfg['git_url'],
version=__version__,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
dependency_links=cfg.get('dep_links', '').split(),
python_requires='>=' + cfg['min_python'],
zip_safe=False,
entry_points={'console_scripts': cfg.get('console_scripts', '').split()},
**setup_cfg
)