-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 872 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
[tool.poetry]
name = "causalipy"
version = "0.1.1"
description = "Causal Methods Implemented in Python"
authors = ["Moritz Helm <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/mohelm/causalipy"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
matplotlib = "^3.5.0"
pandas = "^1.3.4"
patsy = "^0.5.2"
scipy = "^1.7.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-mock = "^3.6.1"
pyarrow = "^10.0.1"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
line_length="100"
indent=' '
multi_line_output="3"
length_sort="1"
import_heading_stdlib="Core Library"
import_heading_firstparty="First party"
import_heading_thirdparty="Third party"
import_heading_localfolder="Local"
include_trailing_comma=true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"