-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (53 loc) · 1.53 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
64
[tool.poetry]
name = "omnisolver"
version = "0.0.0"
description = "Extensible framework for creating and running Binary Quadratic Model solvers and samplers."
authors = ["Konrad Jałowiecki <[email protected]>", "Łukasz Pawela <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics"
]
[tool.poetry.dependencies]
python = "^3.9"
dimod = "^0.12"
numpy = "^1.21"
pandas = "^1.1"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.7.1"
black = "^23.11.0"
isort = "^5.12.0"
pandas-stubs = "^2.1.1.230928"
flake8 = "^6.1.0"
pytest = "^7.4.3"
pytest-mock = "^3.12.0"
pytest-cov = "^4.1.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mike = "^2.0.0"
mkdocs-material = "^9.4.14"
termynal = "^0.11.1"
mkdocs-with-pdf = "^0.9.3"
beautifulsoup4 = "~4.9.3"
weasyprint = "^57"
mkdocstrings = "^0.24.0"
mkdocstrings-python = "^1.7.5"
[tool.poetry.scripts]
omnisolver = "omnisolver.common.cmd:main"
[tool.poetry.plugins."omnisolver"]
random = "omnisolver.random"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.mypy]
namespace_packages = true
explicit_package_bases = true
mypy_path = "src/"