-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.18 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
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm[toml]",
"requests",
"pytz",
"urllib3"
]
build-backend = "setuptools.build_meta"
[project]
name = 'fp-NGFW-SMC-python'
authors = [
{name = "Forcepoint", email = "PSIRT@forcepoint.com"},
]
description = "Python based API to Forcepoint NGFW Management Center"
requires-python = ">=3.5"
license = {text = "Apache License (2.0)"}
dynamic = ["version", "readme"]
dependencies = [
"requests>=2.31.0",
"pytz>=2022.6",
"urllib3>=1.26.18"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
[tool.setuptools.dynamic]
version = {attr = "smc.__version__"} # any module attribute compatible with ast.literal_eval
readme = {file = ["README.rst", "HISTORY.rst"]}
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["."] # ["."] by default
include = ["smc", "smc.*"] # ["*"] by default
exclude = ["smc.tests", "smc.docs"] # empty by default
namespaces = true # true by default
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]