-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4", "setuptools_scm_git_archive"]
build-backend = "setuptools.build_meta"
[project]
name = "omnisolver-dwave"
description = "Parallel-tempering solver compatible with omnisolver."
readme = "README.md"
authors = [
{name="Konrad Jałowiecki", email="[email protected]"},
{name="Łukasz Pawela", email="[email protected]"}
]
license = {text = "Apache-2.0"}
classifiers = [
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics"
]
requires-python = ">=3.8"
dependencies = [
"omnisolver ~= 0.0.3",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest>=6.1.2", "pytest-mock>=3.3.1", "pytest-cov[toml]>=2.12.1"]
docs = [
"sphinx~=6.1.3",
"sphinx-autoapi~=2.0.1",
"pydata-sphinx-theme~=0.13.1",
"sphinx-term~=0.1",
"myst-parser~=1.0.0"
]
[project.entry-points."omnisolver"]
dwave = "omnisolver.dwave"
[project.urls]
repository = "https://github.com/euro-hpc-pl/omnisolver-dwave"
[tool.setuptools_scm]
[tool.setuptools.packages]
find = {exclude = ["tests"], namespaces = true}
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.venv
)/
'''
[tools.coverage.run]
relative_files = true