forked from sbalian/quantum-random
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.66 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "quantum-random"
version = "1.2.4"
description = "Quantum random numbers"
authors = ["Seto Balian <seto.balian@gmail.com>"]
packages = [{ include = "qrandom" }]
readme = "README.md"
license = "MIT"
repository = "https://github.com/sbalian/quantum-random"
maintainers = ["Seto Balian <seto.balian@gmail.com>"]
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",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
requests = "^2.25.1"
numpy = { version = "^1.22", optional = true, python = ">=3.8,<3.10" }
randomgen = { version = "^1.21.2", optional = true, python = ">=3.8,<3.10" }
matplotlib = { version = "^3.5.1", optional = true, python = ">=3.8,<3.10" }
scipy = { version = "<1.8", optional = true, python = ">=3.8,<3.10" }
xdg = "^5.1.1"
types-requests = "^2.28.3"
[tool.poetry.dev-dependencies]
isort = "^5.7.0"
flake8 = "^3.8.4"
pytest = "^6.2.1"
pytest-mock = "^3.5.1"
requests-mock = "^1.8.0"
tox = "^3.21.1"
black = "^22.3.0"
mypy = "^0.971"
[tool.poetry.extras]
numpy = ["numpy", "randomgen"]
analysis = ["scipy", "matplotlib"]
[tool.poetry.scripts]
qrandom-init = 'qrandom._cli:init'
[tool.isort]
line_length = 79
known_first_party = "qrandom"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"