-
Notifications
You must be signed in to change notification settings - Fork 180
/
pyproject.toml
103 lines (96 loc) · 2.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pg-activity"
dynamic = ["version"]
description = "Command line tool for PostgreSQL server activity monitoring."
readme = "README.md"
license = { text = "PostgreSQL" }
requires-python = ">=3.9"
authors = [
{ name = "Julien Tachoires", email = "[email protected]" },
{ name = "Benoit Lobréau", email = "[email protected]" },
{ name = "Denis Laxalde", email = "[email protected]" },
{ name = "Dalibo", email = "[email protected]" },
]
maintainers = [
{ name = "Denis Laxalde", email = "[email protected]" },
{ name = "Benoit Lobréau", email = "[email protected]" },
]
keywords = [
"activity",
"cli",
"monitoring",
"postgresql",
"sql",
"top",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: PostgreSQL License",
"Programming Language :: Python :: 3",
"Topic :: Database",
]
dependencies = [
"attrs >= 17.4, !=21.1",
"blessed >= 1.15.0",
"humanize >= 0.5.1",
"psutil >= 2.0.0",
]
[project.optional-dependencies]
dev = [
"pg-activity[psycopg,psycopg2,testing,typing]",
"black >= 24.10.0",
"check-manifest",
"codespell",
"flake8",
"isort",
"pre-commit",
"pyupgrade",
]
typing = [
"mypy",
"types-psutil >= 5.9.5.15",
"types-psycopg2",
"types-setuptools",
]
psycopg = [
"psycopg[binary] >= 3.1",
]
psycopg2 = [
"psycopg2-binary >= 2.8",
]
testing = [
"psycopg[binary]",
"pytest",
"pytest-postgresql >= 4.0",
]
[project.scripts]
pg_activity = "pgactivity.cli:main"
[project.urls]
"Bug Tracker" = "https://github.com/dalibo/pg_activity/issues/"
Changelog = "https://github.com/dalibo/pg_activity/blob/master/CHANGELOG.md"
Homepage = "https://github.com/dalibo/pg_activity"
"Source code" = "https://github.com/dalibo/pg_activity/"
[tool.setuptools.dynamic]
version = { attr = "pgactivity.__version__" }
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| dist
)/
)
'''
[tool.isort]
profile = "black"