forked from opsani/statesman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.57 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
[tool.poetry]
name = "statesman"
version = "1.0.3"
description = "A modern state machine library."
authors = ["Blake Watters <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/opsani/statesman"
repository = "https://github.com/opsani/statesman"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
pydantic = "^1.7.1"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.0"
devtools = "^0.6.1"
pytest-mock = "^3.10.0"
isort = "^5.8.0"
invoke = "^1.4.1"
flakehell = "^0.9.0"
autoflake = "^1.4"
mccabe = "^0.6.1"
pycodestyle = "^2.6.0"
pyflakes = "^2.2.0"
pytest-cov = "^4.0.0"
flake8-pytest-style = "^1.4.2"
flake8-fixme = "^1.1.1"
flake8-isort = "^4.0.0"
flake8-docstrings = "^1.5.0"
flake8-markdown = "^0.2.0"
pre-commit = "^3.1.1"
pydocstyle = "^5.1.1"
flake8-commas = "^2.0.0"
autopep8 = "^1.5.4"
add-trailing-comma = "^2.1.0"
pyformat = "^0.7"
pylint = "^2.6.0"
flake8-quotes = "^3.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "google" # "black"
line_length = 120
src_paths = ["statesman.py", "statesman_test.py"]
[tool.flakehell]
base = "https://raw.githubusercontent.com/life4/flakehell/master/pyproject.toml"
exclude = ["README.md"]
format = "grouped"
max_line_length = 120
show_source = true
[tool.flakehell.plugins]
pycodestyle = ["+*"]
pyflakes = ["+*"]
mccabe = ["+*"]
# enable everything that starts from `flake8-`
"flake8-*" = ["+*"]
[tool.flakehell.exceptions."statesman_test.py"]
pycodestyle = ["-*"]
pyflakes = ["-*"]
flake8-docstrings = ["-*"]