-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (75 loc) · 2.69 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (75 loc) · 2.69 KB
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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlkit"
version = "1.1.1"
description = "GUI to edit databases. Many backends supported (Postgres, Sqlite, MySQL, ...). Based on Python, GTK3, SQLAlchemy."
readme = { file = "README", content-type = "text/x-rst" }
requires-python = ">=3.10"
license = "AGPL-3.0-or-later"
license-files = ["COPYING"]
authors = [{ name = "Alessandro Dentella", email = "sandro@e-den.it" }]
keywords = ["gtk", "gtk3", "database", "gui", "sqlalchemy", "postgres", "sqlite", "mysql"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"sqlalchemy>=1.4,<3",
"babel",
"python-dateutil",
]
# PyGObject is consumed from the system (apt: python3-gi, gir1.2-gtk-3.0)
# via `uv venv --system-site-packages`. Building it from PyPI requires
# libgirepository-2.0-dev which Ubuntu 24.04 ships but doesn't install by default.
[project.urls]
Homepage = "https://sqlkit.argolinux.org/"
Documentation = "https://sqlkit.argolinux.org/"
[project.optional-dependencies]
# Enable appy-based printing (default printing engine). Install with
# `pip install sqlkit[printing]` or `uv sync --extra printing`.
printing = ["appy"]
# PostgreSQL driver (psycopg 3): `pip install sqlkit[postgres]`.
# Plain postgresql:// URLs are routed to it automatically when
# psycopg2 is not installed (see sqlkit.db.proxy.normalize_url).
postgres = ["psycopg[binary]>=3"]
[project.gui-scripts]
sqledit = "sqlkit.scripts.sqledit:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["sqlkit*"]
[tool.setuptools.package-data]
sqlkit = [
"**/*.glade",
"**/*.png",
"**/*.xpm",
"**/*.svg",
"**/*.ui",
"**/*.xml",
"locale/*/LC_MESSAGES/*.mo",
]
[tool.setuptools.exclude-package-data]
"*" = ["*.po", "*.pot"]
[tool.babel.extract_messages]
output_file = "sqlkit/locale/sqlkit.pot"
[tool.babel.update_catalog]
input_file = "sqlkit/locale/sqlkit.pot"
domain = "sqlkit"
output_dir = "sqlkit/locale/"
[tool.babel.compile_catalog]
domain = "sqlkit"
directory = "sqlkit/locale/"
[dependency-groups]
dev = ["sphinx", "pytest", "pydata-sphinx-theme"]