forked from gem/oq-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
137 lines (122 loc) · 4.05 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
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright (C) 2013-2023 GEM Foundation
#
# OpenQuake is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OpenQuake is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with OpenQuake. If not, see <http://www.gnu.org/licenses/>.
import os
import re
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3.6 is not supported')
def get_version():
version_re = r"^__version__\s+=\s+['\"]([^'\"]*)['\"]"
version = None
package_init = 'openquake/baselib/__init__.py'
for line in open(package_init, 'r'):
version_match = re.search(version_re, line, re.M)
if version_match:
version = version_match.group(1)
break
else:
sys.exit('__version__ variable not found in %s' % package_init)
return version
def get_readme():
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.md'), encoding='utf-8') as readme:
return readme.read()
version = get_version()
readme = get_readme()
url = "https://github.com/gem/oq-engine"
PY_MODULES = ['openquake.commands.__main__']
install_requires = [
'setuptools',
'h5py >=2.10',
'numpy >=1.20',
'scipy >=1.3',
'pandas >=0.25',
'pyzmq >=19.0',
'psutil >=2.0',
'shapely >=1.7',
'docutils >=0.11',
'decorator >=4.3',
'django >=3.2',
'matplotlib',
'requests >=2.20',
'toml >=0.10.2',
'pyproj >=1.9',
]
extras_require = {
'osgeo': [
'GDAL >= 2.4',
],
'dev': [
'pytest >=4.5',
'flake8 >=3.5',
'pdbpp',
'ipython',
'silx',
'sphinx==4.4',
'sphinx-theme',
'pydata-sphinx-theme',
]
}
setup(
name="openquake.engine",
version=version,
author="GEM Foundation",
author_email="devops@openquake.org",
maintainer='GEM Foundation',
maintainer_email='devops@openquake.org',
description=("Computes earthquake hazard and risk."),
license="AGPL3",
keywords="earthquake seismic hazard risk",
url=url,
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Environment :: Console',
'Environment :: Web Environment',
],
packages=find_packages(exclude=["qa_tests", "qa_tests.*",
"tools",
"*.*.tests", "*.*.tests.*",
"openquake.engine.bin",
"openquake.engine.bin.*"]),
py_modules=PY_MODULES,
include_package_data=True,
package_data={"openquake.engine": [
"openquake.cfg", "README.md",
"LICENSE", "CONTRIBUTORS.txt"]},
namespace_packages=['openquake'],
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'console_scripts': ['oq = openquake.commands.__main__:oq'],
},
test_loader='openquake.baselib.runtests:TestLoader',
test_suite='openquake.risklib,openquake.commonlib,openquake.calculators',
zip_safe=False,
)