-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (38 loc) · 945 Bytes
/
pyproject.toml
File metadata and controls
47 lines (38 loc) · 945 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
41
42
43
44
45
46
47
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "parallel-numpy-rng"
authors = [
{name = "Lehman Garrison"},
]
description = "Parallel random number generation that produces the same result, regardless of the number of threads"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy>=2",
"numba",
]
dynamic = ["version"]
license = "Apache-2.0"
license-files = ["LICENSE"]
[project.optional-dependencies]
test = ["pytest"]
[dependency-groups]
dev = ["parallel-numpy-rng[test]"]
[project.urls]
Homepage = "https://github.com/lgarrison/parallel-numpy-rng/"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/parallel_numpy_rng/version.py"
[tool.ruff.format]
quote-style = "single"