-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
75 lines (66 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "quantum-random"
version = "1.5.1"
description = "Quantum random numbers"
readme = "README.md"
license = {text = "MIT License"}
authors = [
{ name = "Seto Balian", email = "seto.balian@gmail.com" }
]
maintainers = [
{ name = "Seto Balian", email = "seto.balian@gmail.com" }
]
keywords = ["quantum", "random", "statistics"]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.10"
dependencies = [
"requests>=2.32.5",
"typer>=0.24.1",
]
[project.optional-dependencies]
numpy = [
"numpy>=2.2.6",
"randomgen>=2.3.0",
]
[dependency-groups]
dev = [
"click>=8.3.1",
"ipython>=8.38.0",
"matplotlib>=3.10.8",
"numpy>=2.2.6",
"pytest>=9.0.2",
"pytest-mock>=3.15.1",
"randomgen>=2.3.0",
"responses>=0.26.0",
"ruff>=0.15.6",
"scipy>=1.15.3",
"ty>=0.0.23",
]
[project.scripts]
qrandom-init = "qrandom._cli:main"
[project.urls]
Homepage = "https://github.com/sbalian/quantum-random"
Repository = "https://github.com/sbalian/quantum-random"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/qrandom"]
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["F", "E", "W", "I001"]
[tool.ruff.lint.isort]
known-first-party = ["qrandom"]