-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (42 loc) · 1.22 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "QUnfold"
version = "0.3.5"
description = "A quantum-based approach to the distribution unfolding problem"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Gianluca Bianco", email = "biancogianluca9@gmail.com"},
{name = "Simone Gasperini", email = "simone.gasperini4@unibo.it"}
]
keywords = [
"quantum",
"annealing",
"unfolding",
"statistics",
"python",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dynamic = ["readme", "dependencies"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}
[project.optional-dependencies]
gurobi = ["gurobipy"]
[project.urls]
Homepage = "https://github.com/Quantum4HEP/QUnfold"
Documentation = "https://qunfold.readthedocs.io/en/latest/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 120
skip-magic-trailing-comma = true