-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
36 lines (33 loc) · 1007 Bytes
/
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
[project]
name = "ghastoolkit"
version = "0.14.2"
authors = [{ name = "GeekMasher" }]
description = "GitHub Advanced Security Python Toolkit"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"certifi==2024.8.30",
"charset-normalizer==3.3.2",
"idna==3.10",
"PyYAML==6.0.2",
"ratelimit==2.2.1",
"requests==2.32.3",
"semantic-version==2.10.0",
"urllib3==2.2.3",
]
[project.urls]
"Homepage" = "https://github.com/GeekMasher/ghastoolkit"
"Bug Tracker" = "https://github.com/GeekMasher/ghastoolkit/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"