File: pyproject.toml

package info (click to toggle)
breezy-debian 2.8.80
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,444 kB
  • sloc: python: 17,599; makefile: 61; sh: 1
file content (46 lines) | stat: -rw-r--r-- 1,371 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
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.2", "breezy"]
build-backend = "setuptools.build_meta"

[project]
name = "brz-debian"
description = "Build Debian packages from versioned sources"
authors = [{name = "Breezy Developers", email = "breezy-core@googlegroups.com"}]
license = {text = "GNU GPL v2"}
dependencies = [
    "pyyaml",
    "breezy>=3.3.0.dev.0",
    "debmutate[watch]>=0.60",
    "python_debian",
    "python-apt",
    "distro-info",
]
version = "2.8.78"
requires-python = ">=3.9"

[project.urls]
Homepage = "https://code.breezy-vcs.org/breezy-debian"

[project.optional-dependencies]
launchpad = ["launchpadlib"]
udd = ["psycopg2"]

[project.scripts]
deb-update-packaging = "breezy.plugins.debian.update_packaging:main"
deb-vcs-up-to-date = "breezy.plugins.debian.vcs_up_to_date:main"
deb-move-orphaned = "breezy.plugins.debian.move_orphaned:main"
deb-import-uncommitted = "breezy.plugins.debian.import_uncommitted:main"
deb-auto-backport = "breezy.plugins.debian.merge_package:auto_backport"
deb-new-upstream = "breezy.plugins.debian.new_upstream:main"
deb-merge = "breezy.plugins.debian.merge_package:main"

[tool.setuptools]
packages = [
    "breezy.plugins.debian",
    "breezy.plugins.debian.upstream",
]
package-dir = {"breezy.plugins.debian" = "."}
include-package-data = false

[tool.setuptools.package-data]
"breezy.plugins.debian" = ["py.typed"]