-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "setuptools-git-versioning<2",]
build-backend = "setuptools.build_meta"
[project]
name = "hashcathelper"
dynamic = ["version"]
authors = [
{name = "Adrian Vollmer", email = "adrian.vollmer@syss.de"},
]
description = "Convenience tool for hashcat"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["hashcat", "passwords", "cracking", "bloodhound", "analytics", "pentest"]
license = {text = "MIT License"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
'pyxdg',
'sqlalchemy',
'tabulate',
'openpyxl',
'neo4j>=4.2, <5.20',
'importlib-metadata',
'tqdm',
]
[tool.setuptools]
packages = ["hashcathelper"]
[project.urls]
"Homepage" = "https://github.com/SySS-Research/hashcathelper"
"Bug Tracker" = "https://github.com/SySS-Research/hashcathelper/issues"
[project.scripts]
hashcathelper = "hashcathelper.__main__:main"
[tool.setuptools-git-versioning]
enabled = true
[project.optional-dependencies]
postgres = ['psycopg2']
tests = [
'pytest',
'flake8',
'beautifulsoup4',
'lxml',
]
dev = [
'tox',
'build',
]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py,lint
isolated_build = True
[testenv:py]
extras = tests
commands = pytest -W ignore::DeprecationWarning -v {posargs} tests
deps = .[tests]
[testenv:lint]
skip_install = true
deps = .[tests]
commands = flake8 hashcathelper tests
"""