-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 835 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 835 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
29
30
31
[build-system]
requires = ['setuptools', 'setuptools-scm']
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[tools.setuptools.packages.find]
where = ["src"]
include = ["psat_api"]
namespaces = true
[project]
name = "psat-api"
dynamic = ["version"]
readme = "README.md"
description = "Proofpoint Security Awareness Training Python API Package"
license = { text = "MIT" }
requires-python = ">3.9"
dependencies = [
'requests',
'pysocks'
]
[project.urls]
repository = "https://github.com/pfptcommunity/psat-api-python"
homepage = "https://www.proofpoint.com/us/products/security-awareness-training"
documentation = "https://proofpoint.securityeducation.com/api/reporting/documentation"
#changelog = "https://github.com/pfptcommunity/psat-api-python"