-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·43 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
executable file
·43 lines (36 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
36
37
38
39
40
41
42
43
[project]
name = "cotengrust"
description = "Fast contraction ordering primitives for tensor networks."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
license = { file = "LICENSE" }
authors = [
{name = "Johnnie Gray", email = "johnniemcgray@gmail.com"}
]
dynamic = ["version"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
[tool.pixi.pypi-dependencies]
cotengrust = { path = ".", editable = true }
[tool.pixi.feature.testing.dependencies]
cotengra = "*"
networkx = "*"
pytest = "*"
[tool.pixi.environments]
test = { features = ["testing"] }
[tool.pixi.tasks.pytest]
default-environment = "test"
cmd = "pytest"
cwd = "."
description = "Run pytest."