-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 902 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
from setuptools import setup, find_packages
import os
with open('README.md') as f:
readme = f.read()
setup(
name='cyclicmodel',
description='statistical causality discovery based on cyclic model',
version='0.0.4',
long_description=readme,
long_description_content_type="text/markdown",
author='Akimitsu INOUE',
author_email='[email protected]',
url='https://github.com/inoueakimitsu/cyclicmodel',
packages=find_packages(),
install_requires=['theano', 'numpy', 'pymc3'],
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',
],
)