-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1009 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
40
41
[tool.poetry]
name = "arguable"
version = "1.0"
description = "class-level configuration via argparse"
authors = ["Dominik1123 <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/Dominik1123/arguable"
repository = "https://github.com/Dominik1123/arguable"
keywords = ["argparse", "configuration"]
[tool.poetry.dependencies]
python = "^3.7"
importlib_metadata = {version = "^1.6.1", python = "<3.8"}
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
coverage = {extras = ["toml"], version = "^5.1"}
pytest-cov = "^2.9.0"
pytest-mock = "^3.1.1"
flake8 = "^3.8.3"
black = "^19.10b0"
flake8-black = "^0.2.0"
flake8-import-order = "^0.18.1"
mypy = "^0.780"
flake8-docstrings = "^1.5.0"
darglint = "^1.4.1"
codecov = "^2.1.4"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["arguable"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"