-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (46 loc) · 1.36 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
[tool.poetry]
name = "vanguardkit"
version = "0.2.0"
description = "A convenient way to calculate the edit distance between html files"
authors = ["Daniel Omar Vergara Pérez <daniel.omar.vergara@gmail.com>"]
license = "MIT"
readme = "README.md"
classifiers = [
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
[tool.poetry.dependencies]
python = "^3.7"
zss = "^1.2.0"
beautifulsoup4 = "^4.9.0"
html5lib = "^1.0.1"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
pytest-cov = "^2.8.1"
coverage = {extras = ["toml"], version = "^5.1"}
black = "^19.10b0"
flake8-bandit = "^2.1.2"
flake8-black = "^0.1.1"
flake8-bugbear = "^20.1.4"
flake8-import-order = "^0.18.1"
safety = "^1.8.7"
codecov = "^2.0.22"
mypy = "^0.770"
pytype = {version = "^2020.4.22", python = "3.7"}
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["vanguardkit"]
[tool.coverage.report]
show_missing = true
fail_under = 70
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"