forked from your-tools/python-cli-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (40 loc) · 1.1 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
[tool.isort]
profile = "black"
[tool.poetry]
name = "cli-ui"
version = "0.17.2"
description = "Build Nice User Interfaces In The Terminal"
readme = "README.rst"
authors = ["Dimitri Merejkowsky <[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/"
[tool.poetry.urls]
Changelog = "https://your-tools.github.io/python-cli-ui/changelog.html"
Issues = "https://github.com/your-tools/python-cli-ui/issues"
[tool.poetry.dependencies]
# Keep this in sync with .github/workflows/
python = "^3.8.1"
colorama = "^0.4.1"
tabulate = "^0.9.0"
unidecode = "^1.3.6"
[tool.poetry.group.dev.dependencies]
# Tests
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
# Linters
black = ">=22.3,<25.0"
flake8 = "^6.0"
flake8-bugbear = "^22.12"
flake8-comprehensions = "^3.10.0"
pep8-naming = "^0.13.1"
isort = "^5.10.0"
types-tabulate = "^0.9.0"
mypy = "0.991"
# Documentation
sphinx = "^5.3.0"
sphinx-autobuild = "2021.3.14"
ghp-import = "^2.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"