-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (38 loc) · 1014 Bytes
/
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
[tool.poetry]
name = "causy"
version = "0.1.0"
description = "Causal discovery made easy."
authors = ["Sofia Faltenbacher <[email protected]>", "Lilith Wittmann <[email protected]>"]
readme = "README.md"
license = "MIT"
include = ["pyproject.toml", "README.md", "LICENSE", "causy", "causy/static/*", "causy/static/assets/*"]
[tool.poetry.dependencies]
python = "^3.10"
scipy = "^1.14"
typer = {extras = ["all"], version = "^0.12.3"}
torch = "^2.4"
fastapi = "^0.112.0"
uvicorn = "^0.30.5"
srsly = "^2.4.8"
pydantic-yaml = "^1.2.1"
click = "^8.1.7"
questionary = "^2.0.1"
jinja2 = "^3.1.4"
markdown = "^3.6"
httpx = "^0.27.0"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
pyinstrument = "^4.5.3"
black = "^23.9.1"
numpy = "^1.26.0"
pdoc = "^14.1.0"
pre-commit = "^3.4.0"
coverage = "^7.3.2"
[tool.poetry-version-plugin]
source = "git-tag"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
causy = "causy.cli:app"