-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (64 loc) · 1.75 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "causal-agent"
version = "0.1.1"
description = "A library for automated causal inference"
readme = "README_PYPI.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Vishal Verma", email = "vishal.verma@andrew.cmu.edu" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"pandas>=2.1,<3",
"numpy>=1.26,<3",
"scipy>=1.10,<2",
"statsmodels>=0.14,<1",
"tqdm>=4.66,<5",
"pydantic>=2.6,<3",
"requests>=2.31,<3",
"python-dotenv>=1,<2",
"langchain-core>=0.3,<0.4",
"langchain-openai>=0.3,<0.4",
"langchain-anthropic>=0.3,<0.4",
"langchain-google-genai>=2,<3",
"langchain-deepseek>=0.1,<0.2",
"langchain-together>=0.3,<0.4",
"seaborn>=0.13,<0.14",
"dowhy>=0.11,<0.12"
]
[project.optional-dependencies]
dev = [
"pytest>=8,<9",
]
docs = [
"sphinx>=7",
"myst-parser>=3",
"sphinx-rtd-theme>=2",
"nbsphinx>=0.9",
"sphinx-sitemap>=2.5",
"sphinxcontrib-mermaid>=1.0",
"sphinxext-opengraph>=0.9",
]
[project.urls]
Homepage = "https://github.com/causalNLP/causal-agent"
Issues = "https://github.com/causalNLP/causal-agent/issues"
[project.scripts]
cais = "cais.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests/cais"]
[tool.setuptools.packages.find]
exclude = ["tests*", "reproduce_results*", "replication_codes*"]