forked from EconForge/dolo.py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (25 loc) · 896 Bytes
/
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
from setuptools import setup, find_packages
from distutils.extension import Extension
import numpy as np
# get version number
exec( open('dolo/version.py').read())
setup(
name = "dolo",
version = __version__,
packages = find_packages(),
package_data={'dolo.compiler':["recipes.yaml"]},
test_suite='dolo.tests',
include_dirs = [np.get_include()],
scripts = ['bin/dolo-recs', 'bin/dolo-matlab', 'bin/dolo-julia', 'bin/dolo'],
install_requires = ["pyyaml", "numba>=0.13", "numpy", "numexpr", "sympy",
"pandas", "interpolation"],
extras_require = {
'plots': ["matplotlib"],
'higher_order': ["slycot"]
},
author = "Pablo Winant",
author_email = "[email protected]",
description = 'Economic modelling in Python',
license = 'BSD-2',
url = 'http://albop.github.com/dolo/',
)