-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
88 lines (81 loc) · 2.59 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
[tool.poetry]
name = "typer-config"
version = "0.6.1"
description = "Utilities for working with configuration files in typer CLIs. "
authors = ["Matt Anderson <matt@manderscience.com>"]
readme = "README.md"
license = "MIT"
packages = [{include = "typer_config"}]
repository = "https://github.com/maxb2/typer-config"
documentation = "https://maxb2.github.io/typer-config/"
homepage = "https://maxb2.github.io/typer-config/"
keywords = [
"typer",
"config",
"configuration",
"configuration-file",
"yaml",
"toml",
"json",
"dotenv",
"cli"
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License"
]
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0"
toml = {version = "^0.10.2", optional = true}
pyyaml = {version = "^6.0", optional = true}
python-dotenv = {version = "*", optional = true}
[tool.poetry.extras]
python-dotenv = ["python-dotenv"]
toml = ["toml"]
yaml = ["pyyaml"]
all = ["toml", "pyyaml", "python-dotenv"]
[tool.poetry.group.dev.dependencies]
ruff = ">=0.0.263,<0.0.279"
pylint = "^2.17.3"
black = "^23.3.0"
isort = "^5.12.0"
pytest = "^7.3.1"
mypy = "^1.2.0"
types-toml = "^0.10.8.6"
types-pyyaml = "^6.0.12.9"
git-changelog = ">=1.0.1,<3.0.0"
duty = ">=0.11,<1.1"
pytest-cov = "^4.0.0"
safety = "^2.3.5"
griffe = "^0.32.2"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.1.9"
mkdocstrings = {extras = ["python"], version = ">=0.21.2,<0.23.0"}
mike = "^1.1.2"
mkdocs-gen-files = "^0.5.0"
pydantic = ">=1.10.7,<3.0.0"
blacken-docs = { git = "https://github.com/maxb2/blacken-docs.git", rev = "b3c82da4df8eaca840b101d0aeab12ae029b6364" }
schema = "^0.7.5"
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "88"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"