-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 1.39 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "queso"
version = "0.1.0"
description = "QUBO-based office seating optimizer"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.13"
authors = [
{ name = "Marc Breiner Sørensen", email = "mbrs@phys.au.dk" }
]
keywords = ["qubo", "optimization", "seating", "office", "annealing","quantum"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastapi>=0.111.0",
"uvicorn>=0.30.0",
"pydantic>=2.0.0",
"numpy>=1.26.0",
"dimod>=0.12.0",
"dwave-samplers>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.0",
"httpx>=0.27.0", # for FastAPI test client
]
[project.urls]
Homepage = "https://github.com/achnos/queso"
Issues = "https://github.com/achnos/queso/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/seating_optimizer"]
[tool.ruff]
line-length = 88
src = ["src"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"N", # pep8 naming
"UP", # pyupgrade
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=seating_optimizer --cov-report=term-missing"