forked from simpeg/discretize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
102 lines (82 loc) · 2.68 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
#!/usr/bin/env python
"""discretize
Discretization tools for finite volume and inverse problems.
"""
import os
import sys
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Natural Language :: English",
]
def configuration(parent_package="", top_path=None):
from numpy.distutils.misc_util import Configuration
config = Configuration(None, parent_package, top_path)
config.set_options(
ignore_setup_xxx_py=True,
assume_default_configuration=True,
delegate_options_to_subpackages=True,
quiet=True,
)
config.add_subpackage("discretize")
return config
with open("README.rst") as f:
LONG_DESCRIPTION = "".join(f.readlines())
build_requires = [
"numpy>=1.8",
"cython>=0.2",
]
install_requires = build_requires + [
"scipy>=0.13",
]
metadata = dict(
name="discretize",
version="0.7.1",
python_requires=">=3.6",
setup_requires=build_requires,
install_requires=install_requires,
author="SimPEG developers",
description="Discretization tools for finite volume and inverse problems",
long_description=LONG_DESCRIPTION,
license="MIT",
keywords="finite volume, discretization, pde, ode",
url="http://simpeg.xyz/",
download_url="http://github.com/simpeg/discretize",
classifiers=CLASSIFIERS,
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
)
if len(sys.argv) >= 2 and (
"--help" in sys.argv[1:]
or sys.argv[1] in ("--help-commands", "egg_info", "--version", "clean")
):
# For these actions, NumPy is not required.
#
# They are required to succeed without Numpy, for example when
# pip is used to install discretize when Numpy is not yet present in
# the system.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
else:
if (len(sys.argv) >= 2 and sys.argv[1] in ("bdist_wheel", "bdist_egg")) or (
"develop" in sys.argv
):
# bdist_wheel/bdist_egg needs setuptools
import setuptools
from numpy.distutils.core import setup
# Add the configuration to the setup dict when building
# after numpy is installed
metadata["configuration"] = configuration
setup(**metadata)