-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 2.19 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlkit"
version = "1.0.0"
description = "GUI to edit databases. Many backends supported (Postgres, Sqlite, MySQL, ...). Based on Python, GTK3, SQLAlchemy."
readme = "README"
requires-python = ">=3.10"
license = { text = "AGPL-3.0-or-later" }
authors = [{ name = "Alessandro Dentella", email = "sandro@e-den.it" }]
urls = { Homepage = "http://sqlkit.argolinux.org/" }
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3",
"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,<2",
"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.optional-dependencies]
# Enable appy-based printing (default printing engine). Install with
# `pip install sqlkit[printing]` or `uv sync --extra printing`.
printing = ["appy"]
[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"]
[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"]