File: pyproject.toml

package info (click to toggle)
bugz 0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: python: 1,211; makefile: 4
file content (47 lines) | stat: -rw-r--r-- 1,352 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
47
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "pybugz"
description = "python interface to bugzilla"
readme = "README"
license = {file = "LICENSE"}
requires-python = ">=3.3"
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Console",
    "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
    "Operating System :: Microsoft :: Windows",
    "Operating System :: Unix",
    "Programming Language :: Python :: 3 :: Only",
]
authors = [
	{name = "Alastair Tse", email = "alastair@liquidx.net"},
    {name = "Santiago M. Mola", email = "cooldwind@gmail.com"},
    {name = "William Hubbs", email = "w.d.hubbs@gmail.com"},
    {name = "Mike Gilbert", email = "floppym@gentoo.org"},
    {name = "Benjamin Behringer", email = "mail@benjamin-behringer.de"},
	{name = "Arthur Zamarin", email = "arthurzam@gentoo.org"},
]
maintainers = [
    {name = "William Hubbs", email = "w.d.hubbs@gmail.com"},
	{name = "Arthur Zamarin", email = "arthurzam@gentoo.org"},
]
dynamic = ["version"]

[project.urls]
Homepage = "http://github.com/williamh/pybugz"
Source = "http://github.com/williamh/pybugz"

[project.scripts]
bugz = "bugz.cli:main"

[tool.flit.module]
name = "bugz"

[tool.flit.external-data]
directory = "data"

[tool.flit.sdist]
include = ["lbugz"]