forked from cdt15/lingam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.09 KB
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lingam"
description = "Python package for causal discovery based on LiNGAM."
readme = "README.md"
authors = [
{ name = "Takashi Ikeuchi" },
{ name = "Genya Haraoka" },
{ name = "Mayumi Ide" },
{ name = "Kouhei Nishikawa" },
{ name = "Yan Zeng" },
{ name = "Takashi Nicholas Maeda" },
{ name = "Wataru Kurebayashi" },
{ name = "Shohei Shimizu" }
]
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy<=1.13.1",
"scikit-learn>=1.6",
"graphviz",
"statsmodels",
"networkx",
"pandas",
"pygam",
"matplotlib",
"psy",
"semopy",
"autograd"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/cdt15/lingam"
[tool.setuptools.packages.find]
exclude = ["tests"]
[tool.setuptools.dynamic]
version = { attr = "lingam.__version__" }