-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
55 lines (48 loc) · 1.35 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
[tool.poetry]
name = "checkdigit"
version = "0.5.0"
description = "A check digit library for data validation"
authors = ["harens <[email protected]>"]
maintainers = ["harens <[email protected]>"]
readme = "PYPIREADME.rst"
license = "GPL-3.0-or-later"
include = ["checkdigit/py.typed"]
keywords = ["Check Digits", "Validation", "ISBN", "GS1", "Luhn"]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
'Typing :: Typed'
]
homepage = "https://checkdigit.rtfd.io"
repository = "https://github.com/harens/checkdigit"
documentation = "https://checkdigit.rtfd.io"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/harens/checkdigit/issues"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
[tool.poetry.dev-dependencies]
pylint = "2.13.9"
mypy = "^1.4"
black = "^23.3"
isort = "^5.11.5"
pydocstyle = "^6.3.0"
coverage = "^7.2.7"
mutmut = "^2.4.4"
pre-commit = "^2.21.0"
pyupgrade = "^3.3.2"
Sphinx = "5.3.0"
sphinx-autobuild = "^2021.3.14"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
pytest-sugar = "^0.9.7"
[tool.coverage.run]
branch = true
# Coverage.py tries to check error404 since it's imported
include = ["checkdigit/*", "tests/*"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"