forked from rly0nheart/buganize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.56 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "buganize"
version = "1.7.1"
description = "Python client for the Google Issue Tracking system (Buganizer)"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Ritchie Mwewa", email = "hi@rly0nheart.com" },
]
keywords = [
"buganizer",
"google-issue-tracker",
"issue-tracker",
"bug-tracker",
"bug-bounty",
"vulnerability",
"security",
"chromium",
"cve",
"vrp",
"google",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Bug Tracking",
"Framework :: AsyncIO",
]
dependencies = [
"httpx>=0.28.1",
]
[project.optional-dependencies]
cli = ["rich>=14.3.3"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"black[jupyter]>=26.1.0"
]
[project.urls]
Changelog = "https://github.com/rly0nheart/buganize/blob/master/CHANGELOG.md"
Documentation = "https://github.com/rly0nheart/buganize/blob/master/USAGE.md"
Repository = "https://github.com/rly0nheart/buganize"
[project.scripts]
buganize = "buganize.cli:start"
buganise = "buganize.cli:start"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"