-
Notifications
You must be signed in to change notification settings - Fork 90
/
pyproject.toml
61 lines (54 loc) · 1.84 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311", "py312"]
exclude = "((.eggs | .git | .pytype | .pytest_cache | build | dist))"
[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.poetry]
name = "questionary"
version = "2.0.1"
description = "Python library to build pretty command line user prompts ⭐️"
authors = [ "Tom Bocklisch <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>", "Kian Cross <[email protected]>"]
repository = "https://github.com/tmbo/questionary"
documentation = "https://questionary.readthedocs.io/"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
# supported python versions
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
keywords = [ "cli", "ui", "inquirer", "questions", "prompt",]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8"
prompt_toolkit = ">=2.0,<4.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = ">=4.1,<8.0"
sphinx-rtd-theme = ">=0.5,<2.1"
sphinx-autobuild = ">=2020.9.1,<2022.0.0"
sphinx-copybutton = ">=0.3.1,<0.6.0"
sphinx-autodoc-typehints = ">=1.11.1,<3.0.0"
[tool.poetry.group.dev.dependencies]
pytest-cov = ">=5.0.0,<6"
pytest = ">=7.0.1,<9.0.0"
coveralls = "^3.3.1"
mypy = "^1.2.0"
toml = "^0.10.2"
pre-commit = { version = ">=2.20,<4.0", python = ">=3.7,<4.0"}