File: pyproject.toml.in

package info (click to toggle)
knot 3.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,804 kB
  • sloc: ansic: 153,806; sh: 5,822; python: 1,141; makefile: 817
file content (35 lines) | stat: -rw-r--r-- 926 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "libknot"
version = "@PACKAGE_VERSION@"
description = "Python bindings for libknot"
readme = "README.md"
requires-python = ">=3.5"
license = { text = "GPL-2.0-or-later" }
authors = [
    { name = "CZ.NIC, z.s.p.o.", email = "knot-dns@labs.nic.cz" },
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Programming Language :: Python :: 3",
    "Topic :: Internet :: Name Service (DNS)",
    "Topic :: Software Development :: Libraries",
    "Topic :: System :: Systems Administration",
]

[project.urls]
Documentation = "https://www.knot-dns.cz/documentation"
Issues = "https://gitlab.nic.cz/knot/knot-dns/-/issues"
Source = "https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/libknot"

[tool.hatch.build]
# don't filter by .gitignore
ignore-vcs = true
exclude = [
    ".*",
    "*.in",
    "Makefile*",
]