-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.28 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "synthx"
version = "1.6.0"
description = "A Python Library for Advanced Synthetic Control Analysis"
authors = ["kenki931128 <[email protected]>"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.26.4"
pandas = "^2.2.1"
polars = "^0.20.16"
scipy = "^1.12.0"
matplotlib = "^3.8.3"
tqdm = "^4.66.2"
joblib = "^1.4.0"
openpyxl = "^3.1.5"
pyarrow = "^16.1.0"
[tool.poetry.group.dev.dependencies]
isort = {extras = ["pyproject"], version = "^5.13.2"}
black = "^24.3.0"
pylint = "^3.1.0"
mypy = "^1.9.0"
bandit = "^1.7.8"
pytest = "^8.1.1"
pytest-cov = "^4.1.0"
pytest-mock = "^3.14.0"
notebook = "^7.2.5"
types-tqdm = "^4.66.0.20240417"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
include_trailing_comma = true
line_length = 100
lines_after_imports = 2
multi_line_output = 3
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ['py39']
[tool.pylint.format]
max-line-length = 100
[tool.pylint.messages_control]
disable = ["F0010"]
[tool.bandit]
targets = ["synthx", "tests"]
exclude_dirs = [".venv"]
[tool.bandit.assert_used]
skips = ["*/test_*.py"]
[[tool.mypy.overrides]]
module = ["scipy", "scipy.optimize", "joblib"]
ignore_missing_imports = true