forked from hydpy-dev/hydpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
74 lines (69 loc) · 2.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
"""Please execute `prepare_build.py` before starting the build process."""
import os
import Cython.Distutils
import numpy
import setuptools
with open("README.rst", "r", encoding="utf-8") as readmefile:
long_description = readmefile.read()
extension_dir = os.path.join("hydpy", "cythons", "autogen")
extension_modules = [
setuptools.Extension(
name=f"hydpy.cythons.autogen.{name[:-4]}",
sources=[os.path.join(extension_dir, name)],
extra_compile_args=["-O2"],
)
for name in os.listdir(extension_dir)
if name.endswith(".pyx")
]
setuptools.setup(
name="HydPy",
version="6.0a0",
description="A framework for the development and application of hydrological "
"models.",
long_description=long_description,
author="HydPy Developers",
author_email="c.tyralla@bjoernsen.de",
url="https://github.com/hydpy-dev/hydpy",
license="LGPL-3.0",
classifiers=[
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
],
keywords="hydrology modelling water balance rainfall runoff",
cmdclass={"build_ext": Cython.Distutils.build_ext},
packages=(
["hydpy"] + [f"hydpy.{p}" for p in setuptools.find_namespace_packages("hydpy")]
),
include_package_data=True,
ext_modules=extension_modules,
include_dirs=[numpy.get_include()],
scripts=[os.path.join("hydpy", "exe", "hyd.py")],
python_requires=">=3.7",
install_requires=[
"black",
"bokeh",
"click",
"Cython",
"matplotlib",
"netcdf4 < 1.6; python_version == '3.7'",
"netcdf4; python_version > '3.7'",
"networkx",
"numpy",
"pandas",
"plotly",
"scipy",
"typing_extensions",
"wrapt",
"xmlschema",
],
)