forked from larslorch/avici
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (47 loc) · 1.16 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
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
setup(
name='avici',
version='1.0.3',
description='Amortized Inference for Causal Structure Learning',
author='Lars Lorch',
author_email='lars.lorch@inf.ethz.ch',
url="https://github.com/larslorch/avici",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
package_data={
'avici': [
'assets/*.tsv',
'config/examples/*.yaml',
'config/train/*.yaml',
'synthetic/sergio/*.yaml',
],
},
install_requires=[
'jax>=0.3.17',
'jaxlib>=0.3.14',
'imageio',
'jupyter',
'matplotlib',
'numpy',
'scipy',
'pandas',
'igraph',
'python-igraph',
'scikit-learn',
'sklearn',
'tqdm>=4.64.1',
'dm-haiku>=0.0.8',
'psutil',
'optax>=0.1.3',
'pyarrow==7.0.0',
'tensorflow-datasets~=4.3.0',
'deepdiff',
'seaborn',
'torch',
'huggingface-hub',
]
)