-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.56 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
[project]
name = "hash-forge"
version = "1.2.3"
description = "Hash Forge is a lightweight Python library designed to simplify the process of hashing and verifying data using a variety of secure hashing algorithms."
readme = "README.md"
authors = [{ name = "Zozi", email = "[email protected]" }]
license = "MIT"
keywords = [
"hash",
"security",
"bcrypt",
"argon2",
"pbkdf2",
"scrypt",
"blake2",
"Whirlpool",
"RIPEMD-160",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
urls = { "Homepage" = "https://github.com/Zozi96/hash-forge", "Repository" = "https://github.com/Zozi96/hash-forge", "Issue Tracker" = "https://github.com/Zozi96/hash-forge/issues" }
requires-python = ">=3.10"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = ["pytest>=8.3.3", "ruff>=0.7.3"]
[tool.mypy]
files = "src/hash_forge"
strict = true
disallow_untyped_calls = true
disallow_untyped_defs = true
warn_return_any = true
[project.optional-dependencies]
bcrypt = ["bcrypt==4.2.0"]
argon2 = ["argon2-cffi==23.1.0"]
crypto = ["pycryptodome==3.21.0"]
[tool.ruff]
line-length = 120
exclude = [".venv"]
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]