forked from QuanEstimation/QuanEstimation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
69 lines (64 loc) · 1.53 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quanestimation"
version = "0.2.8"
description = "A package for quantum parameter estimation."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "BSD 3-Clause License" }
authors = [
{ name = "QuanEstimation Group (Jing Liu et al.)", email = "liujing@hainanu.edu.cn" }
]
keywords = ["quanestimation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"pip>=19.2.3",
"bump2version>=0.5.11",
"wheel>=0.33.6",
"numpy",
"sympy",
"scipy",
"cvxpy",
"juliacall>=0.9.26",
"more_itertools",
"julia_project",
"h5py"
]
[project.urls]
Homepage = "https://github.com/QuanEstimation/QuanEstimation"
[project.scripts]
quanestimation = "quanestimation.cli:main"
[project.optional-dependencies]
test = [
"pytest",
"coverage",
"codecov"
]
dev = [
"bump2version>=0.5.11",
"wheel>=0.33.6",
"build",
"pytest>=8.4.0",
"coverage>=7.9.0",
"codecov"
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["quanestimation*"]