aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 3fc06fa335f97999df7e6af6ea5f97640cd11d14 (plain)
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 = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = 'bugspray'
version = '0.1-dev'
description = 'A multi-way bridge between public-inbox, bugzilla, and git'
readme = 'README.md'
requires-python = '>=3.8'
license = {file = 'COPYING'}
authors = [
    { name = 'Konstantin Ryabitsev', email = 'konstantin@linuxfoundation.org' }
]
classifiers = [
    'Development Status :: 3 - Alpha',
    'Environment :: Console',
    'Intended Audience :: System Administrators',
    'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
    'Programming Language :: Python :: 3 :: Only',
    'Topic :: Communications :: Email',
    'Topic :: Communications :: Email :: Mailing List Servers',
    'Topic :: Database',
    'Topic :: Software Development :: Bug Tracking',
    'Topic :: Software Development :: Version Control :: Git',
]
dynamic = ["dependencies", "optional-dependencies"]

[tool.setuptools.dynamic]
dependencies = { file = ["requirements.in"] }

[tool.pip-tools]
generate_hashes = true

[project.urls]
'Homepage' = 'https://git.kernel.org/pub/scm/utils/bugspray/bugspray.git/'
'Source' = 'https://git.kernel.org/pub/scm/utils/bugspray/bugspray.git'
'Community' = 'https://lore.kernel.org/tools'

[project.scripts]
bugspray = 'bugspray.command:cmd'

[tool.bumpversion]
current_version = "0.1-dev"
files = [
    {filename = "src/bugspray/__init__.py"}
]