-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
60 lines (55 loc) · 1.71 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
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "reptor"
version = "0.23"
authors = [
{ name="Richard Schwabe" },
{ name="Aron Molnar", email="[email protected]" }
]
maintainers = [
{name = 'Syslifters', email = '[email protected]'}
]
description = "reptor allows you automating pentest reporting with SysReptor."
readme = "README.md"
license = {file = 'LICENSE'}
dependencies = [
'certifi >= 2023.5.7',
'cvss >= 2.0',
'Django >= 4.2',
'PyYAML >= 3.10',
'requests >= 2.28.2',
'rich >=10,<14',
'termcolor >= 2.3.0',
'urllib3 >=1.21.1,<3',
'xmltodict >= 0.13',
'tomli >= 2.0.1,<3',
'tomli-w >= 1.0',
'tomlkit >= 0.12.3',
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
translate = ['deepl >= 1.15.0']
ghostwriter = ['gql[aiohttp] >= 3.4.1',]
dev = ['pytest >= 7.4.0',]
all = ['reptor[translate,ghostwriter,dev]']
[project.scripts]
reptor = 'reptor.__main__:run'
[project.urls]
"Homepage" = "https://github.com/Syslifters/reptor/blob/main/README.md"
"Documentation" = "https://github.com/Syslifters/reptor/blob/main/README.md"
"Bug Tracker" = "https://github.com/Syslifters/reptor/issues"
"Source" = "https://github.com/syslifters/reptor"
[tool.setuptools.package-data]
"*" = ["**/*.md", "**/*.toml"]