-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "evoq"
version = "0.1.0"
authors = [
{name = "Eileen Kuehn", email = "[email protected]"},
{name = "Max Fischer", email = "[email protected]"},
]
description = "Evolutionary algorithms for quantum architecture search"
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
license = {"file" = "LICENSE"}
keywords = ["quantum computing", "evolutionary algorithm", "pennylane"]
requires-python = ">=3.9"
dependencies = []
[project.optional-dependencies]
test = [
"pytest",
"flake8",
"flake8-bugbear",
"black; implementation_name=='cpython'",
"coverage",
"pytest-cov",
]
doc = ["sphinx"]
[project.urls]
Source = "https://github.com/cirkiters/evoq"
[tool.pytest.ini_options]
testpaths = [
"tests",
]