-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (47 loc) · 1.74 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = [ "setuptools>=62.0.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "schwachstellenmgmt"
version = "0.0.1"
authors = [
{ name="Stefan Machmeier", email="[email protected]" },
{ name="Lea Schmierer", email="[email protected]" },
]
description = "This project contacts the persons responsible for IP addresses affected by vulnerabilities via email. Communication takes place via the Nextcloud, an onetimesecret and the sending of emails."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
keywords = [ "network" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Security' ,
'Topic :: Networking :: Communication',
'Topic :: Security :: Cryptography',
'Topic :: Communications :: Email',
]
[project.scripts]
schwachstellenmgmt = "schwachstellenmgmt.vulnerability_management:main"
[project.urls]
"Homepage" = "https://github.com/bwInfoSec/schwachstellenmgmt/"
"Bug Tracker" = "https://github.com/bwInfoSec/schwachstellenmgmt/issues"
[tool.setuptools.packages.find]
include = [
"schwachstellenmgmt*",
]
exclude = [
"test*",
"assets*",
]