-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 2.18 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools<81", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version" # exclude "+<hash>" from version name so we can upload to Test PyPI
[project]
name = "simulaqron"
dynamic = ["version"]
dependencies = [
"dataclasses-serialization>=1.3.1, <2.0",
"numpy>=1.14.0,<2.0.0",
"dill>=0.4.0,<1.0.0",
"scipy>=1.1.0,<2.0.0",
"twisted>=24.0.0,<26.0.0",
"networkx>=3.0,<3.6",
"click>=8.0,<9.0",
"daemons>=1.3.0,<2.0.0",
"netqasm>=2.1.1,<3.0.0",
"multiprocess>=0.70.18,<1.0",
"StrEnum<1.0.0",
"psutil<8.0.0"
]
requires-python = ">=3.10,<3.13"
authors = [
{name = "Axel Dahlberg", email = "e.a.dahlberg@tudelft.nl"}
]
maintainers = [
{name = "Diego Rivera", email = "d.a.g.a.rivera@tudelft.nl"}
]
description = "A simulator for developing Quantum Internet software"
readme = "README.md"
keywords = ["simulaqron", "quantum simulator", "quantum application", "qubit", "tudelft"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Unix",
"Operating System :: MacOS"
]
[project.optional-dependencies]
opt = [
"projectq<=0.8.0",
"qutip<5.0.0"
]
dev = [
"flake8>=5.0.0,<6.0.0",
"pytest>=7.1, <8.0",
"qutip<5.0.0",
"sphinx>=7.2.6, <8.0",
"sphinx-rtd-theme",
"build",
"twine",
"pylint",
"pyink",
"pytest>=7.1, <8.0",
"mypy",
]
# These 2 optional groups are a "bare-minimum" dependencies used for testing/linting in GitHub environments
test = [
"pytest>=7.1, <8.0",
"projectq<=0.8.0",
"qutip<5.0.0"
]
lint = [
"flake8>=5.0.0,<6.0.0",
]
[tool.setuptools.packages.find]
include = ["simulaqron"]
exclude = ["simulaqron/config"]
[project.scripts]
simulaqron = "simulaqron.cli:cli_entry_point"
[project.urls]
Homepage = "https://github.com/SoftwareQuTech/SimulaQron"
Documentation = "https://softwarequtech.github.io/SimulaQron/index.html"
Changelog = "https://github.com/SoftwareQuTech/SimulaQron/blob/master/CHANGELOG.md"
Repository = "https://github.com/SoftwareQuTech/SimulaQron"