-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
39 lines (32 loc) · 982 Bytes
/
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
[tool.black]
line-length = 110
[tool.isort]
line_length = 110
multi_line_output = 3
include_trailing_comma = true
known_localfolder = "status_map,tests"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"
[tool.poetry]
name = "status-map"
version = "0.5.1"
description = "Status map (and its transitions) data structure"
license = "MIT"
authors = ["Luiz Menezes <[email protected]>", "Rafael Cassau <[email protected]>"]
repository = "https://github.com/lamenezes/status-map"
homepage = "https://github.com/lamenezes/status-map"
keywords = ['status', 'map', 'transition', 'validation']
[tool.poetry.dependencies]
python = ">=3.6.2,<4"
networkx = ">=2.5"
[tool.poetry.dev-dependencies]
black = { version = "*", allow-prereleases = true }
codecov = "*"
flake8 = ">=4.0"
isort = ">=4.3"
pre-commit = "^2.15"
pytest = ">=6.0"
pytest-cov = ">=3.0"
[build-system]
requires = ["poetry>=1.1.11"]
build-backend = "poetry.masonry.api"