File: pyproject.toml

package info (click to toggle)
python-inquirerpy 0.3.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,088 kB
  • sloc: python: 9,463; makefile: 15
file content (73 lines) | stat: -rw-r--r-- 2,159 bytes parent folder | download | duplicates (2)
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
[tool.poetry]
name = "InquirerPy"
version = "0.3.4"
description = "Python port of Inquirer.js (A collection of common interactive command-line user interfaces)"
authors = ["Kevin Zhuang <kevin7441@gmail.com>"]
maintainers = ["Kevin Zhuang <kevin7441@gmail.com>"]
readme = "README.md"
repository = "https://github.com/kazhala/InquirerPy"
documentation = "https://inquirerpy.readthedocs.io"
license = "MIT"
keywords=["cli", "prompt-toolkit", "commandline", "inquirer", "development"]
classifiers = [
  "Development Status :: 2 - Pre-Alpha",
  "Environment :: Console",
  "Intended Audience :: Developers",
  "License :: OSI Approved :: MIT License",
  "Operating System :: Unix",
  "Operating System :: Microsoft",
  "Programming Language :: Python :: 3",
  "Programming Language :: Python :: 3.7",
  "Programming Language :: Python :: 3.8",
  "Programming Language :: Python :: 3.9",
  "Topic :: Software Development",
  "Topic :: Software Development :: User Interfaces",
  "Topic :: Software Development :: Libraries",
  "Topic :: Software Development :: Libraries :: Application Frameworks",
]
packages = [
  {include = "InquirerPy"}
]
include = ["InquirerPy/py.typed"]

[tool.poetry.dependencies]
python = "^3.7"
prompt-toolkit = "^3.0.1"
pfzy = "^0.3.1"
Sphinx = {version = "^4.1.2", optional = true}
furo = {version = "^2021.8.17-beta.43", optional = true}
sphinx-copybutton = {version = "^0.4.0", optional = true}
sphinx-autobuild = {version = "^2021.3.14", optional = true}
myst-parser = {version = "^0.15.1", optional = true}

[tool.poetry.dev-dependencies]
pre-commit = "^2.11.1"
isort = "^5.9.1"
black = "^21.6b0"
pydocstyle = "^6.1.1"
coveralls = "^3.2.0"

[tool.poetry.extras]
docs = ["Sphinx", "furo", "myst-parser", "sphinx-autobuild", "sphinx-copybutton"]

[tool.isort]
profile = "black"

[tool.pydocstyle]
match = "^(?!(.*(init|main))).*\\.py"
convention = "pep257"
add-ignore = "D107"
match_dir = "^(?!(example)).*"

[tool.coverage.run]
source = ["InquirerPy"]

[tool.coverage.report]
ignore_errors = true
exclude_lines = [
    "if TYPE_CHECKING:"
]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"