File: pyproject.toml

package info (click to toggle)
python-sql 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 392 kB
  • sloc: python: 5,137; sh: 9; makefile: 7
file content (38 lines) | stat: -rw-r--r-- 1,059 bytes parent folder | download
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
[build-system]
requires = ['hatchling >= 1', 'hatch-tryton']
build-backend = 'hatchling.build'

[project]
name = 'python-sql'
dynamic = ['version', 'authors']
requires-python = '>=3.9'
maintainers = [
    {name = "Tryton", email = "foundation@tryton.org"},
    ]
description = "Library to write SQL queries"
readme = 'README.rst'
license = 'BSD-3-Clause'
license-files = ['COPYRIGHT']
keywords = ["SQL", "database", "query"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "Topic :: Database",
    "Topic :: Software Development :: Libraries :: Python Modules",
    ]

[project.urls]
homepage = "https://www.tryton.org/"
changelog = "https://code.tryton.org/python-sql/-/blob/branch/default/CHANGELOG"
forum = "https://discuss.tryton.org/tags/python-sql"
issues = "https://bugs.tryton.org/python-sql"
repository = "https://code.tryton.org/python-sql"

[tool.hatch.version]
path = 'sql/__init__.py'

[tool.hatch.build]
packages = ['sql']

[tool.hatch.metadata.hooks.tryton]
copyright = 'COPYRIGHT'