forked from xunzheng/notears
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 883 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
from setuptools import setup
setup(
name='notears',
version='3.0',
description='Implementation of the NOTEARS algorithm',
author='Xun Zheng',
author_email='[email protected]',
url='https://github.com/xunzheng/notears',
download_url='https://github.com/xunzheng/notears/archive/v3.0.zip',
license='Apache License 2.0',
keywords='notears causal discovery bayesian network structure learning',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
scripts=['bin/notears_linear',
'bin/notears_nonlinear'],
packages=['notears'],
package_dir={'notears': 'notears'},
install_requires=['numpy', 'scipy', 'python-igraph'],
)