forked from fastapi/typer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
102 lines (96 loc) · 2.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core ~= 3.7.1"]
[project]
authors = [
{name = "Sebastián Ramírez", email = "[email protected]"},
{name = "Alexander Regueiro", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"cloup ~= 2.0.0",
]
dynamic = ["version", "description"]
keywords = ["cli", "click", "cloup", "shell", "terminal", "typer", "typehints"]
license = {file = "LICENSE"}
maintainers = [
{name = "Alexander Regueiro", email = "[email protected]"},
]
name = "typer-cloup"
readme = "README.md"
requires-python = ">= 3.7"
[project.urls]
documentation = "https://typer-cloup.netlify.app"
homepage = "https://github.com/alexreg/typer-cloup"
repository = "https://github.com/alexreg/typer-cloup"
[project.optional-dependencies]
all = [
"colorama ~= 0.4.4",
"docstring_parser ~= 0.15",
]
dev = [
"autoflake ~= 1.4.0",
"flake8 ~= 4.0.1",
"pre-commit ~= 2.19.0",
]
doc = [
"cairosvg ~= 2.5.2",
"mdx-include ~= 1.4.1",
"mkdocs ~= 1.2.4",
"mkdocs-material ~= 8.1.11",
"pillow ~= 9.3.0",
]
test = [
"black ~= 22.3.0",
"coverage ~= 6.0.0",
"docstring_parser ~= 0.15",
"isort ~= 5.10.1",
"mypy ~= 0.950",
"pytest ~= 7.1.2",
"pytest-cov ~= 3.0.0",
"pytest-forked ~= 1.4.0",
"pytest-sugar ~= 0.9.4",
"pytest-xdist ~= 3.0.2",
]
[tool.flit.module]
name = "typer_cloup"
[tool.isort]
known_third_party = ["typer", "click", "cloup"]
profile = "black"
skip_glob = [
"docs_src/subcommands/tutorial001/main.py",
"docs_src/subcommands/tutorial003/lands.py",
"docs_src/subcommands/tutorial003/main.py",
]
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
]
filterwarnings = [
"error",
'ignore:starlette.middleware.wsgi is deprecated and will be removed in a future release\..*:DeprecationWarning:starlette', # For pytest-xdist
'ignore::DeprecationWarning:xdist',
]
junit_family = "xunit2"
xfail_strict = true