-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
44 lines (44 loc) · 1.11 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
from setuptools import setup, find_packages
setup(
name='avici',
version='1.0.5',
description='Amortized Inference for Causal Structure Learning',
author='Lars Lorch',
author_email='[email protected]',
url="https://github.com/larslorch/avici",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.10.0',
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',
'tensorflow==2.9.1',
'imageio',
'jupyter',
'matplotlib',
'numpy',
'pandas',
'igraph',
'scikit-learn',
'tqdm',
'dm-haiku>=0.0.8',
'psutil',
'optax',
'pyarrow==7.0.0',
'tensorflow-datasets~=4.3.0',
'deepdiff',
'huggingface-hub',
]
)