Initial commit

This commit is contained in:
2023-10-28 10:51:13 +00:00
commit 3deea0c962
10 changed files with 883 additions and 0 deletions
+67
View File
@@ -0,0 +1,67 @@
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "RandQuik"
version = "0.1.0"
description = "Extremely fast and cryptographically secure random number generator."
readme = "README.md"
license = ""
authors = [{ name = "Vasanko" }]
classifiers = []
dependencies = []
requires-python = ">=3.10"
keywords = [
"random",
"generator",
"fast",
"secure",
"cryptographic",
"randomness",
]
[project.urls]
Homepage = ""
[project.optional-dependencies]
dev = ["pytest"]
[tool.hatchling]
[tool.hatch.version]
source = "hatchling.version:Version"
[tool.hatch.build]
hooks.vcs.version-file = "randquik/_version.py"
hooks.vcs.template = """
# This file is automatically generated by hatch build.
__version__ = {version!r}
"""
targets.sdist.include = ["/randquik"]
[tool.ruff]
extend-select = ["I", "W", "UP", "C4", "ISC", "S"]
# Worth selecting but still too broken: ASYNC, B, DTZ, FA
ignore = [
"D100",
"D101",
"D102",
"D103",
"E402",
"E741",
"F811",
"F821",
# ruff format complains about these:
"ISC001",
"S101",
"S102",
"S104",
"S311",
"S603",
"S607",
"W191",
]
show-source = true
show-fixes = true