-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
45 lines (37 loc) · 977 Bytes
/
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
[project]
name = "cli-ui"
version = "0.19.0"
description = "Build Nice User Interfaces In The Terminal"
readme = "README.rst"
authors = [{ name = "Dimitri Merejkowsky", email = "[email protected]" }]
license = "BSD-3-Clause"
repository = "https://git.sr.ht/~your-tools/python-cli-ui"
documentation = "https://your-tools.github.io/python-cli-ui/"
dynamic = ["requires-python", "dependencies"]
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = "^3.9"
colorama = "^0.4.1"
tabulate = "^0.9.0"
unidecode = "^1.3.6"
[tool.poetry.group.dev.dependencies]
# Tests
pytest = "^8.3"
pytest-cov = "^6.0.0"
# Linters
black = "^25"
flake8 = "^7.1"
flake8-bugbear = "^24.12"
flake8-comprehensions = "^3.10.0"
pep8-naming = "^0.14.1"
isort = "^6.0"
types-tabulate = "^0.9.0"
mypy = "0.991"
# Documentation
sphinx = "^7.4"
sphinx-autobuild = "2024.10.3"
ghp-import = "^2.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"