-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 949 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 949 Bytes
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
[tool.poetry]
name = "casual_inference"
version = "0.7.1"
description = "Do causal inference more casually"
authors = ["yaginuuun <[email protected]>"]
homepage = "https://github.com/shyaginuma"
repository = "https://github.com/shyaginuma/casual_inference"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
pandas = "^1.4.3"
plotly = "^5.10.0"
typing-extensions = "^4.3.0"
scikit-learn = "^1.1.3"
statsmodels = "^0.13.5"
lxml = "^4.9.1"
scipy = "^1.14.1"
numpy = "1.26.4"
[tool.poetry.group.dev.dependencies]
mypy = "^0.981"
flake8 = "^5.0.4"
black = ">=22.6,<25.0"
isort = "^5.10.1"
pytest = "^7.1.2"
ipykernel = "^6.15.2"
seaborn = "^0.12.0"
nbformat = "^5.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py310']
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true