-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (45 loc) · 1.35 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
[tool.poetry]
name = "pytypes"
version = "0.1.0"
description = "Infer python types via test tracing"
authors = ["Benjamin Sparks <[email protected]>", "Viet Tran Ba <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.10,<4"
coverage = "^6.3.3"
pandas = "^1.4.2"
pathlib = "^1.0.1"
toml = "^0.10.2"
dacite = "^1.6.0"
GitPython = "^3.1.27"
click = "^8.1.3"
click-option-group = "^0.5.3"
requests = "^2.28.0"
tqdm = "^4.64.0"
libcst = "^0.4.7"
mkdocs = { version = "^1.3.1", optional = true }
mkdocs-material = { version = "^8.4.0", optional = true }
mkdocstrings = {extras = ["python"], version = "^0.19.0", optional = true }
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
pytest = "^7.1.2"
black = "^22.3.0"
mypy = "^0.960"
types-toml = "^0.10.7"
types-requests = "^2.27.30"
pandas-stubs = "^1.2.0"
pytest-order = "^1.0.1"
pytest-dependency = "^0.5.1"
pytest-cov = "^3.0.0"
types-tqdm = {version = "^4.64.6", allow-prereleases = true}
[tool.poetry.extras]
doc-tools = ["mkdocs", "mkdocs-material", "mkdocstrings"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_file = "test.log"
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"