-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (47 loc) · 1.25 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
[tool.poetry]
name = "rich-tables"
version = "0.6.1"
description = "Ready-made rich tables for various purposes"
authors = ["Šarūnas Nejus <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/snejus/rich-tables"
repository = "https://github.com/snejus/rich-tables"
keywords = ["json", "pretty", "rich", "console", "terminal"]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
funcy = ">=2.0"
multimethod = "*"
rgbxy = ">=0.5"
platformdirs = ">=4.2.0"
rich = ">=12.3.0"
sqlparse = ">=0.4.4"
typing-extensions = ">=4.7.1"
[tool.poetry.group.dev.dependencies]
flake8 = ">=4.0.1"
mypy = ">=0.910"
pylint = ">=2.13.7"
pytest = ">=7"
pytest-clarity = ">=1.0.1"
pytest-cov = ">=3.0.0"
pytest-sugar = "*"
freezegun = ">=1.2.1"
types-six = ">=1.16.2"
types-freezegun = ">=1.1.9"
coveralls = ">=3.3.1"
snoop = ">=0.4.3"
[tool.poetry.extras]
hue = ["rgbxy"]
[tool.poetry.scripts]
table = "rich_tables.table:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"