-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (46 loc) · 1.72 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
48
49
50
51
from setuptools import setup, find_packages
from causalflow.version import VERSION
with open("PyPI/long_description.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
INSTALL_REQUIRES = ["pandas>=1.5.2",
"numba>=0.58.1",
"scipy>=1.3.3",
"networkx>=2.8.6",
"ruptures>=1.1.7",
"scikit_learn>=1.1.3",
"torch>=1.11.0",
"gpytorch>=1.4",
"dcor>=0.5.3",
"h5py>=3.7.0",
"jpype1>=1.5.0",
"mpmath>=1.3.0",
"causalnex",
"lingam",
"pyopencl>=2024.1",
"matplotlib>=3.7.0",
"numpy",
"pgmpy>=0.1.19",
"tigramite>=5.1.0.3",
"rectangle-packer",
"grandalf"
]
setup(
name = 'py-causalflow',
version = VERSION,
description = 'A Collection of Methods for Causal Discovery from Time-series',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/lcastri/causalflow',
author = 'Luca Castri',
author_email = '[email protected]',
packages = find_packages(),
python_requires='>=3',
install_requires = INSTALL_REQUIRES,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
)