forked from jas02/dependency-track-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (25 loc) · 920 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dependency-track-client"
version = "4.0.0"
dependencies = [
"requests>=2.31.0",
]
authors = [
{ name="Alvin Chen", email="[email protected]" },
{ name="Lumir Jasiok", email="[email protected]" },
{ name="Louis Marie", email="[email protected]" }
]
description = "A simple wrapper for the Dependency Track REST API. This is fork based on original work of Alvin Chen and his dependency-track library."
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/Orange-OpenSource/dependency-track-python"
Issues = "https://github.com/Orange-OpenSource/dependency-track-python/issues"