-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathpyproject.toml
31 lines (28 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "compressedcrack"
version = "1.0.3"
description = "A command-line tool to crack password-protected compressed files using brute force."
readme = "README.md"
authors = [{ name = "Minh Thanh", email = "thanhdoantranminh@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
keywords = ["brute force", "password cracking", "compressed files"]
dependencies = ["patool>=2.2.0"]
requires-python = ">=3.6"
[project.urls]
"Homepage" = "https://github.com/mnismt/CompressedCrack"
"Bug Tracker" = "https://github.com/mnismt/CompressedCrack/issues"
[project.scripts]
compressedcrack = "compressedcrack.main:main"