-
Notifications
You must be signed in to change notification settings - Fork 96
/
pyproject.toml
91 lines (87 loc) · 2 KB
/
pyproject.toml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyphi"
version = "2.0.0a1"
description = "A package for integrated information theory"
readme = "README.md"
license = {text = "GNU General Public License v3 or later (GPLv3+)"}
authors = [
{name = "William GP Mayner", email = "[email protected]"}
]
keywords = [
"neuroscience",
"causality",
"causal-modeling",
"causation",
"integrated-information-theory",
"iit",
"integrated-information",
"modeling"
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering"
]
dependencies = [
"Graphillion>=1.5",
"joblib>=0.8.0",
"more_itertools>=8.13.0",
"numpy<2.0.0",
"ordered-set>=4.0.2",
"pandas>=2.0.0",
"psutil>=2.1.1",
"pyyaml>=3.13",
"scipy>=0.13.3",
"tblib>=1.3.2",
"toolz>=0.9.0",
"tqdm>=4.20.0",
]
[project.optional-dependencies]
dev = [
"asv",
"build",
"coverage",
"hypothesis",
"pytest<8.0.0",
"pytest-lazy-fixture",
"sphinx",
"sphinx_rtd_theme",
"twine",
"watchdog"
]
parallel = [
"ray[default]>=1.9.2"
]
visualize = [
"matplotlib",
"networkx>=2.6.2",
"plotly>=5.8.2",
"seaborn",
]
graphs = [
"igraph>=0.9.10",
"networkx>=2.6.2",
]
caching = [
"redis>=2.10.5",
]
emd = [
"pyemd>=0.3.0"
]
[project.urls]
documentation = "https://pyphi.readthedocs.io"
bugs = "https://github.com/wmayner/pyphi/issues"
homepage = "http://integratedinformationtheory.org/"
discussion = "https://groups.google.com/forum/#!forum/pyphi-users"
[tool.setuptools.packages.find]
exclude = ["docs", "test"]