-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 824 Bytes
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 108
[tool.isort]
profile = "black"
[tool.mypy]
strict = true
[tool.poetry]
name = "pylicy"
version = "0.1.1"
description = "Extensible and customizable policy definition and enforcement framework"
authors = ["uint0 <i@uint0.dev>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/uint0/pylicy"
repository = "https://github.com/uint0/pylicy"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^1.8.2"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
black = "^21.11b1"
isort = "^5.10.1"
mypy = "^0.910"
hypothesis = "^6.27.1"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
types-PyYAML = "^6.0.1"
pytest-asyncio = "^0.16.0"
mkdocs = "^1.2.3"
mkdocs-material = "^7.3.6"