-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.83 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
[tool.poetry]
name = "inquirer3"
version = "0.6.1"
description = "Collection of common interactive command line user interfaces, based on Inquirer.js"
authors = ["Guy Salton <guy123121@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/guysalt/python-inquirer3"
repository = "https://github.com/guysalt/python-inquirer3"
documentation = "https://python-inquirer3.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[tool.poetry.dependencies]
python = "^3.8.1"
blessed = "^1.20.0"
readchar = "^4.0.6"
editor = "^1.6.6"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.8"
flake8 = "^7.0.0"
flake8-docstrings = "^1.7.0"
furo = "^2024.4.27"
isort = "^5.13.2"
pexpect = "^4.9.0"
pre-commit = "^3.3.3"
pre-commit-hooks = "^4.6.0"
pyupgrade = "^3.15.2"
safety = "^3.2.0"
sphinx = "^7.0.1"
sphinx-autobuild = "^2021.3.14"
nox = "^2024.4.15"
nox-poetry = "^1.0.3"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["inquirer3", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 97
[tool.black]
line-length = 119
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"