-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
88 lines (81 loc) · 1.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "kyoushi-simulation"
version = "0.3.10"
description = ""
authors = ["Maximilian Frank <maximilian.frank@ait.ac.at>"]
license = "MIT"
readme = 'README.md' # Markdown files are supported
repository = "https://ait-aecid.github.io/kyoushi-simulation/"
homepage = "https://ait-aecid.github.io/kyoushi-simulation"
packages = [
{ include = "cr_kyoushi", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.7.0"
click = "^7.1.2"
pydantic = "^1.8.1"
importlib-metadata = {version = "^3.1.0", python = "<3.8"}
"ruamel.yaml" = "^0.16.12"
structlog = "^20.2.0"
colorama = "^0.4.4"
numpy = "^1.19.5"
typing-extensions = {version = "^3.7.4", python = "<3.8"}
livereload = "^2.6.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.8.4"
pre-commit = "^2.9.0"
black = "^20.8b1"
mypy = "^0.790"
pytest-cov = "^2.10.1"
pytest-sugar = "^0.9.4"
pytest-mock = "^3.3.1"
isort = "^5.7"
pylint = "^2.6.0"
safety = "^1.9.0"
autoflake = "^1.4"
mkdocs = "^1.1.2"
mkdocs-material = "^6.1.7"
mkdocs-exclude = "^1.0.2"
mkdocstrings = "^0.13.6"
mkdocs-click = "^0.3.0"
markdown-include = "^0.6.0"
pymdown-extensions = "^8.0.1"
mkdocs-macros-plugin = "^0.5.0"
[tool.isort]
profile = "black"
force_single_line = false
force_grid_wrap = 2
multi_line_output = 3
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
src_paths = ["src", "tests"]
skip_glob = ["*/setup.py"]
filter_files = true
known_first_party = "cr_kyoushi"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''
[tool.poetry.scripts]
kyoushi-sim = "cr_kyoushi.simulation.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"