-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.01 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
[build-system]
requires = ["scikit-build-core>=0.9"]
build-backend = "scikit_build_core.build"
[project]
name = "lidmas"
version = "1.2.1"
description = "LiDMaS+ (Logical Injection & Decoding Modeling System) quantum error-correction simulator"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Dennis Delali Kwesi Wayo" }
]
keywords = ["quantum", "qec", "surface-code", "decoder", "simulation"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics"
]
[project.urls]
Homepage = "https://github.com/DennisWayo/lidmas_cpp"
Repository = "https://github.com/DennisWayo/lidmas_cpp"
[project.scripts]
lidmas = "lidmas.__main__:main"
[tool.scikit-build]
cmake.version = ">=3.16"
cmake.build-type = "Release"
wheel.packages = ["python/lidmas"]
sdist.include = ["python/lidmas/__init__.py", "python/lidmas/__main__.py"]