-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (65 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "argser"
version = "0.0.16"
description = "Arguments parsing without boilerplate."
authors = ["Bachynin Ivan <bachynin.i@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/vanyakosmos/argser"
repository = "https://github.com/vanyakosmos/argser"
documentation = "https://argser.readthedocs.io/en/stable"
keywords = ['flags', 'argparse']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
]
[tool.poetry.dependencies]
python = "^3.6"
tabulate = {version = "^0.8.5", optional = true}
argcomplete = {version = "^1.10", optional = true}
termcolor = "^1.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.8"
sphinx = "^2.2"
sphinx-rtd-theme = "^0.4.3"
sphinxcontrib-apidoc = "^0.3.0"
m2r = "^0.2.1"
pytest-doctestplus = "^0.4.0"
pytest-sugar = "^0.9.2"
pre-commit = "^1.20"
flake8 = "^3.7"
black = {version = "^18.3-alpha.0", allow-prereleases = true}
pytest-mock = "^1.11"
[tool.poetry.extras]
tabulate = ["tabulate"]
argcomplete = ["argcomplete"]
all = ["tabulate", "argcomplete"]
[tool.poetry.scripts]
argser = "argser.__main__:main"
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| playground.py
)/
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"