-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.17 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "belch"
version = "2.0.0"
description = "Password list generator"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "LICENSE" }
authors = [
{ name = "croketillo", email = "croketillo@gmail.com" }
]
keywords = ["password", "password generator"]
requires-python = ">=3.10"
dependencies = [
"tinyprogress",
"colorama",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Terminals",
"Topic :: Security",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/croketillo/belch"
Repository = "https://github.com/croketillo/belch"
[project.scripts]
belch = "belch.belch:main"
[tool.setuptools.packages.find]
where = ["."]