forked from jsalvatier/mcex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 1.29 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
'''
Created on Oct 24, 2009
# Author: John Salvatier <[email protected]>, 2009.
'''
from distutils.core import setup
from distutils.extension import Extension
DISTNAME = 'mcex'
DESCRIPTION = "Monte-Carlo Experiment"
LONG_DESCRIPTION =""""""
MAINTAINER = 'John Salvatier'
MAINTAINER_EMAIL = "[email protected]"
URL = ""
LICENSE = "BSD"
VERSION = "0.1"
classifiers = ['Development Status :: 3 - Alpha',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: OS Independent']
if __name__ == "__main__":
setup(name = DISTNAME,
version = VERSION,
maintainer = MAINTAINER,
maintainer_email = MAINTAINER_EMAIL,
description = DESCRIPTION,
license = LICENSE,
url = URL,
long_description = LONG_DESCRIPTION,
packages =
['mcex','mcex/distributions','mcex/history','mcex/step_methods'],
classifiers =classifiers,
install_requires=['theano','numpy','scipy','numdifftools'])