-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 903 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 903 Bytes
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
[project]
name = "shuffled"
version = "1.1.0"
description = "Iterate randomly over integer ranges"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Bertrand Bonnefoy-Claudet", email = "bertrand@bertrandbc.com" },
]
homepage = "https://github.com/bbc2/shuffled"
keywords = ["random", "integer", "iterator"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed",
]
dependencies = [
"cryptography",
]
[dependency-groups]
dev = [
"pyrefly>=0.16.2",
"pytest>=8.3.4",
"pytest-benchmark>=5.1.0",
"pytest-cov>=6.0.0",
"ruff>=0.11.7",
]
[build-system]
requires = ["hatchling>=1.16"]
build-backend = "hatchling.build"
[tool.ruff]
lint.select = ["E", "F", "I", "W"]
lint.ignore = ["E501", "E741"]
line-length = 88