-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 922 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "rng-jax"
description = "JAX random number generation as a NumPy generator"
readme = "README.md"
license = "MIT"
authors = [
{name = "Nicolas Tessore", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"jax",
]
[project.optional-dependencies]
doc = [
"furo",
"sphinx",
]
test = [
"pytest",
"pytest-cov",
]
[project.urls]
Repository = "https://github.com/glass-dev/rng-jax"
Issues = "https://github.com/glass-dev/rng-jax"
[tool.hatch.version]
source = "vcs"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
doctest_optionflags = "ELLIPSIS NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL"