-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.1 KB
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"]
build-backend = "hatchling.build"
[project]
name = "mrg32k3a"
version = "2.0.1"
authors = [
{ name = "David Eckman", email = "eckman@tamu.edu" },
{ name = "Shane Henderson", email = "sgh9@cornell.edu" },
{ name = "Sara Shashaani", email = "sshasha2@ncsu.edu" },
{ name = "William Grochocinski", email = "williamgrochocinski@gmail.com" },
]
description = "A Python implementation of the mrg32k3a pseudo-random number generator."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["numpy"]
[project.urls]
"Homepage" = "https://github.com/simopt-admin/mrg32k3a"
"Documentation" = "https://mrg32k3a.readthedocs.io/en/latest/"
[project.optional-dependencies]
rust = ["mrg32k3a-core>=0.1.1"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]