forked from taku-y/bmlingam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.14 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
classifiers = """\
Development Status :: 3 - Alpha
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python
Topic :: Scientific/Engineering
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
Programming Language :: Python :: 2.7
"""
setup(
name = 'BMLiNGAM',
version = '0.1.4',
description = 'Software for causal estimation.',
long_description = '',
classifiers = classifiers,
author = 'Taku Yoshioka, Shohei Shimizu',
author_email = '[email protected]',
url = '',
license = 'MIT',
platforms = ['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
packages = ['bmlingam', 'bmlingam.commands', 'bmlingam.tests'],
install_requires = ['numpy>=1.6.2', 'scipy>=0.11', 'matplotlib',
'pandas>=0.18', 'parse'],
scripts = ['bin/bmlingam-causality', 'bin/bmlingam-coeff',
'bin/bmlingam-make-testdata'],
)