-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (41 loc) · 1.04 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
63
64
65
66
67
[tool.poetry]
name = "gridcommand"
version = "1.0"
description = "Grid-based clone of Same Time Risk."
authors = ["Jace Browning <jacebrowning@gmail.com>"]
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = "^3.9"
flask = "^2.1"
datafiles = "^2.0"
minilog = "^2.1"
gunicorn = "^20.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
autoflake = "^1.4"
mypy = "^0.961"
pytest = "^7.1.2"
pytest-describe = "*"
pytest-expecter = "*"
pytest-random = "*"
pytest-cov = "*"
pytest-watch = "^4.2.0"
pomace = "^0.12"
livereload = "=2.5.1"
honcho = "^1.1.0"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
plugins = "datafiles.plugins:mypy"
cache_dir = ".cache/mypy/"
[tool.pytest.ini_options]
log_level = "DEBUG"
addopts = "--no-header --random --cov=app --cov-report=term-missing:skip-covered --cov-report=html:.cache/htmlcov --no-cov-on-fail"
cache_dir = ".cache/pytest/"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"