-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1 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
[tool.poetry]
name = "pdfa-learning"
version = "0.1.0"
description = "A Python project template."
authors = ["MarcoFavorito <[email protected]>"]
license = "LGPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.19.4"
graphviz = "^0.16"
hypothesis = "^5.43.5"
mknotebooks = "0.5.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
pytest-randomly = "^3.4.1"
tox = "^3.19.0"
codecov = "^2.1.9"
black = "==20.8b1"
mypy = "^0.782"
isort = "^5.4.2"
flake8 = "^3.8.3"
flake8-docstrings = "^1.5.0"
flake8-bugbear = "^20.1.4"
flake8-eradicate = "^0.4.0"
flake8-isort = "^4.0.0"
pylint = "^2.6.0"
safety = "^1.9.0"
vulture = "^2.1"
bandit = "^1.6.2"
mkdocs = "^1.1.2"
markdown_include = "^0.6.0"
mkdocs-material = "^5.5.11"
ipython = "^7.18.1"
jupyter = "^1.0.0"
markdown = "3.2.2"
matplotlib = "^3.3.3"
jupyterlab = "^3.0.0"
notebook = "^6.1.6"
pygments = "^2.7.3"
mknotebooks = "0.5.0"
twine = "^3.3.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"