-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 2.14 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
[project]
name = "tyxonq"
version = "1.0.0"
description = "Quantum computing framework with multi-backend support"
readme = "README.md"
requires-python = ">=3.10,<3.13"
authors = [
{ name = "TyxonQ Development Team", email = "code@quregenai.com" },
]
license = {text = "Apache-2.0"} # 更标准的写法
keywords = ["quantum", "quantum-computing", "quantum-machine-learning", "quantum-chemistry", "quantum-simulation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"pytest>=8.4",
"openfermion>=1.7.1",
"openfermionpyscf>=0.5",
"renormalizer>=0.0.11",
"pyscf>2.5",
"numpy>=2.0.2",
"opt-einsum>=3.4.0",
"python-dotenv>=1.1.1",
"qiskit>=2.1.0",
"requests>=2.32.4",
"ruff>=0.12.2",
"scipy>=1.13.1",
"symengine>=0.14.1",
"sympy>=1.14.0",
"torch>=2.7.1",
"torchvision>=0.22",
]
[project.optional-dependencies]
dev = [
"jupyter>=1.1.1",
"pytest>=6.0",
"pytest-lazy-fixtures>=1.1.4",
"build>=0.8.0",
"twine>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/QureGenAI-Biotech/TyxonQ"
Documentation = "https://github.com/QureGenAI-Biotech/TyxonQ"
Repository = "https://github.com/QureGenAI-Biotech/TyxonQ"
Issues = "https://github.com/QureGenAI-Biotech/TyxonQ/issues"
"Official Website" = "https://www.tyxonq.com"
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
tyxonq = ["*.txt", "*.md", "*.rst"]
[tool.pytest.ini_options]
testpaths = ["tests_core_module","tests_examples","tests_applications_chem","tests_mol_valid"]
python_files = ["test_*.py"]
addopts = "-v -ra"