-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
65 lines (49 loc) · 1.92 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
#!/usr/bin/env python
# Copyright (c) 2014, 2024 Warren Weckesser
# All rights reserved.
# See the LICENSE file for license information.
from os import path
from setuptools import setup
def get_odeintw_version():
"""
Find the value assigned to __version__ in odeintw/__init__.py.
This function assumes that there is a line of the form
__version__ = "version-string"
in odeintw/__init__.py. It returns the string version-string, or None if
such a line is not found.
"""
with open(path.join("odeintw", "__init__.py"), "r") as f:
for line in f:
s = [w.strip() for w in line.split("=", 1)]
if len(s) == 2 and s[0] == "__version__":
return s[1][1:-1]
_descr = ('Solve complex and matrix differential equations '
'with scipy.integrate.odeint.')
_long_descr = """
odeintw
=======
`odeintw` provides a wrapper of `scipy.integrate.odeint` that allows it to
handle complex and matrix differential equations. That is, it can solve
equations of the form
dZ/dt = F(Z, t, param1, param2, ...)
where `t` is real and `Z` is a real or complex array.
Since `odeintw` is just a wrapper of `scipy.integrate.odeint`, it requires
`scipy` to be installed. SciPy 0.15 or greater is required, to avoid a
bug in `scipy.integrate.odeint` in older versions of SciPy.
See README.md at https://github.com/WarrenWeckesser/odeintw for examples.
"""
setup(name='odeintw',
version=get_odeintw_version(),
description=_descr,
long_description=_long_descr,
author='Warren Weckesser',
url='https://github.com/WarrenWeckesser/odeintw',
packages=['odeintw'],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
keywords="scipy odeint",
install_requires=['scipy'])