-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
26 lines (22 loc) · 1.2 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
[project]
name = "pg_statviz"
version = "0.7"
description = "A minimalist extension and utility pair for time series analysis and visualization of PostgreSQL internal statistics."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["open-source", "postgres", "opensource", "database", "dataviz", "time-series", "postgresql", "data-visualization", "database-management", "database-administration", "performance-analysis", "postgresql-database", "postgresql-extension", "time-series-analysis"]
authors = [{name = "Jimmy Angelakos", email = "vyruss@hellug.gr"}]
classifiers = ["Development Status :: 4 - Beta",
"License :: OSI Approved :: PostgreSQL License",
"Programming Language :: Python :: 3",]
dependencies = ["argh", "contourpy", "cycler", "fonttools", "kiwisolver", "matplotlib", "numpy", "packaging", "pandas", "Pillow", "psycopg", "pyparsing", "python-dateutil", "six"]
[project.urls]
"Homepage" = "https://github.com/vyruss/pg_statviz"
[project.scripts]
pg_statviz = "pg_statviz.pg_statviz:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"pg_statviz.libs" = ["*ttf", "*png"]