forked from inoueakimitsu/wbic_bml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 972 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
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='wbic_bml',
version='0.0.1',
description='WBIC based model selection in Bayesian Mixed LiNGAM',
long_description=readme,
author='Akimitsu INOUE and Shohei SHIMIZU',
author_email='[email protected]',
url='https://github.com/inoueakimitsu/wbic_bml',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=['theano', 'numpy', 'pymc3<=3.2'],
dependency_links=['git+ssh://[email protected]/taku-y/bmlingam/develop.git#egg=bmlingam'],
test_suite='tests',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Mathematics',
],
)