-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 907 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 907 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nicerand"
version = "0.1.0"
description = "A 'nice' random library for games - random selection with memory to prevent frustrating repeats"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12"
authors = [
{name = "Alexandre Begnoche", email = "abegnoche@nvidia.com"}
]
keywords = [
"random",
"games",
"shuffle",
"no-repeat",
"gamedev",
"probability",
]
[project.urls]
Homepage = "https://github.com/abegnoche/nicerand"
Repository = "https://github.com/abegnoche/nicerand"
Issues = "https://github.com/abegnoche/nicerand/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.3.4,<9.0.0",
"pytest-cov>=6.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]