-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.02 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
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "easy_gui_prompt"
version = "2024.06.14"
description = "Simplify the creation of GUI elements in the terminal"
license = "MIT"
repository = "https://github.com/HenriquesLab/easy-gui-prompt"
documentation = "https://github.com/HenriquesLab/easy-gui-prompt/blob/main/README.md"
authors = [ "Ricardo Henriques <[email protected]>", "Bruno Saraiva <[email protected]>",]
readme = "README.md"
[[tool.poetry.packages]]
include = "easy_gui_prompt"
from = "src"
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.1"
toml = "^0.10.2"
prompt-toolkit = "^3.0.43"
[tool.pytest.ini_options]
testpaths = [ "tests",]
addopts = "--cov=easy_gui_prompt"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
ipykernel = "^6.29.4"
ruff = "^0.4.3"
lazydocs = "^0.4.8"
gptrepo = "^1.0.3"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.0"
pytest-xdist = "^3.6.1"
nbmake = "^1.5.3"
mypy = "^1.10.0"
pytest-cov = "^5.0.0"