-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 807 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pcpi"
version = "1.0.0"
authors = [
{ name="Adam Hamilton-Sutherland", email="ahamiltonsut@paloaltonetworks.com" },
]
description = "Python Package for making API calls to the Prisma Cloud API using best practices."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
dependencies = [
"PyYAML ~= 6.0",
'requests < 3',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
[project.urls]
"Homepage" = "https://github.com/PaloAltoNetworks/pc-python-integration"
"Bug Tracker" = "https://github.com/PaloAltoNetworks/pc-python-integration/issues"