-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
195 lines (177 loc) · 6.31 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
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#
# Copyright 2015-2022 European Commission (JRC);
# Licensed under the EUPL (the 'Licence');
# You may not use this work except in compliance with the Licence.
# You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl
"""
CO2MPAS setup.
"""
import io
import os
import collections
import os.path as osp
name = 'co2mpas'
mydir = osp.dirname(__file__)
def read_project_version():
"""
Version-trick to have version-info in a single place,
taken from: http://stackoverflow.com/questions/2058802/how-can-i-get-the-
version-defined-in-setup-py-setuptools-in-my-package
:return:
Project version.
:rtype: str
"""
fglobals = {}
with io.open(osp.join(mydir, name, '_version.py'), encoding='UTF-8') as fd:
exec(fd.read(), fglobals) # To read __version__
return fglobals['__version__']
# noinspection PyPackageRequirements
def get_long_description(cleanup=True):
"""
Return the project long description.
:param cleanup:
Clean up the build folder.
:type cleanup: bool
:return:
Project long description.
:rtype: str
"""
import shutil
import tempfile
from doc.conf import extensions
from sphinx.application import Sphinx
from sphinx.util.osutil import abspath
from sphinxcontrib.writers.rst import RstTranslator
from sphinx.ext.graphviz import text_visit_graphviz
RstTranslator.visit_dsp = text_visit_graphviz
outdir = tempfile.mkdtemp(prefix='setup-', dir='.')
exclude_patterns = os.listdir(mydir or '.')
exclude_patterns.remove('pypi.rst')
# noinspection PyTypeChecker
app = Sphinx(
abspath(mydir), osp.join(mydir, 'doc/'), outdir, outdir + '/.doctree',
'rst', confoverrides={
'exclude_patterns': exclude_patterns,
'master_doc': 'pypi',
'dispatchers_out_dir': abspath(outdir + '/_dispatchers'),
'extensions': extensions + ['sphinxcontrib.restbuilder']
}, status=None, warning=None)
app.build(filenames=[osp.join(app.srcdir, 'pypi.rst')])
with open(outdir + '/pypi.rst') as file:
res = file.read()
if cleanup:
shutil.rmtree(outdir)
return res
if __name__ == '__main__':
import functools
from setuptools import setup, find_packages
proj_ver = read_project_version()
url = 'https://github.com/JRCSTU/%s-ta' % name
download_url = '%s/tarball/v%s' % (url, proj_ver)
project_urls = collections.OrderedDict((
('Documentation', 'http://%s.readthedocs.io' % name),
('Issue tracker', '%s/issues' % url),
))
long_description = ''
if os.environ.get('ENABLE_SETUP_LONG_DESCRIPTION') == 'TRUE':
try:
long_description = get_long_description()
print('LONG DESCRIPTION ENABLED!')
except Exception as ex:
print('LONG DESCRIPTION ERROR:\n %r', ex)
extras = {
'cli': ['click', 'click-log'],
'sync': ['syncing>=1.0.4', 'pandas>=0.21.0'],
'plot': ['flask', 'regex', 'graphviz', 'Pygments', 'lxml',
'beautifulsoup4', 'jinja2', 'docutils', 'plotly'],
'io': ['pandas>=0.21.0', 'dill', 'regex', 'xlref', 'xlrd', 'asteval']
}
extras['dice'] = ['co2mpas_dice>=4.0.5'] + extras['io']
# noinspection PyTypeChecker
extras['all'] = list(functools.reduce(set.union, extras.values(), set()))
extras['dev'] = extras['all'] + [
'wheel', 'sphinx', 'gitchangelog', 'mako', 'sphinx_rtd_theme',
'setuptools>=36.0.1', 'sphinxcontrib-restbuilder', 'nose', 'coveralls',
'ddt', 'sphinx-click'
]
setup(
name=name,
version=proj_ver,
packages=find_packages(exclude=[
'tests', 'tests.*',
'doc', 'doc.*'
]),
url=url,
project_urls=project_urls,
download_url=download_url,
license='EUPL 1.1+',
author='CO2MPAS-Team',
author_email='JRC-CO2MPAS@ec.europa.eu',
description='The Type-Approving vehicle simulator predicting NEDC CO2 '
'emissions from WLTP',
long_description=long_description,
keywords="""CO2 fuel-consumption WLTP NEDC vehicle automotive EU JRC IET
STU correlation back-translation policy monitoring M1 N1 simulator
engineering scientific
""".split(),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 4 - Beta",
'Natural Language :: English',
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
'Environment :: Console',
'License :: OSI Approved :: European Union Public Licence 1.1 '
'(EUPL 1.1)',
'Natural Language :: English',
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering',
"Topic :: Scientific/Engineering :: Information Analysis",
],
obsoletes=['co2mpas (< 4.0)'],
python_requires='>=3.5',
install_requires=[
'PyYAML',
'schedula>=0.3.2',
'tqdm',
'scikit-learn',
'regex',
'lmfit>=0.9.7',
'numpy',
'schema',
'scipy',
'wltp',
'wltp-jrshift',
'xgboost>=0.90',
'statsmodels',
'syncing>=1.0.4'
],
entry_points={
'console_scripts': [
'%(p)s = %(p)s.cli:cli' % {'p': name},
],
},
extras_require=extras,
tests_require=['nose>=1.0', 'ddt'],
test_suite='nose.collector',
package_data={
'co2mpas': [
'demos/*.xlsx',
'templates/*.xlsx'
]
},
zip_safe=True,
options={'bdist_wheel': {'universal': True}},
platforms=['any'],
)