-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
39 lines (37 loc) · 1.04 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
import setuptools
setuptools.setup(
name='causaldag',
version='0.1a.163',
description='Causal DAG manipulation and inference',
long_description='CausalDAG is a Python package for the creation, manipulation, and learning of Causal DAGs.',
author='Chandler Squires',
author_email='chandlersquires18@gmail.com',
packages=setuptools.find_packages(exclude=['tests']),
python_requires='>3.5.0',
zip_safe=False,
classifiers=[
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
install_requires=[
'scipy',
'dataclasses',
'numpy',
# 'scikit_sparse',
'matplotlib',
'numexpr',
'pandas',
'scikit_learn',
'typing',
'pygam',
'tqdm',
'networkx',
'joblib',
'ipdb',
'frozendict',
'conditional_independence',
'graphical_models',
'graphical_model_learning'
]
)