-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
47 lines (41 loc) · 1.32 KB
/
pyproject.toml
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 = "[email protected]"},
{name = "Santiago M. Mola", email = "[email protected]"},
{name = "William Hubbs", email = "[email protected]"},
{name = "Mike Gilbert", email = "[email protected]"},
{name = "Benjamin Behringer", email = "[email protected]"},
{name = "Arthur Zamarin", email = "[email protected]"},
]
maintainers = [
{name = "William Hubbs", email = "[email protected]"},
{name = "Arthur Zamarin", email = "[email protected]"},
]
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"]