-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 897 Bytes
/
pyproject.toml
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 = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "pqtree"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "."
[tool.pixi.project]
description = "Faster PQ Tree library for Python"
authors = ["Parsa Bahraminejad <pbahrami@uwaterloo.ca>", "Alireza Mohaghegh Dolatabadi <a3mohagh@uwaterloo.ca>"]
channels = ["conda-forge"]
platforms = ["osx-arm64"]
[tool.pixi.pypi-dependencies]
pqtree = { path = ".", editable = true }
[tool.pixi.tasks]
publish = "maturin publish "
build = "maturin build"
dev = "maturin develop"
test = "pytest"
[tool.pixi.feature.test.dependencies]
pytest = "*"
pytest-cov = "*"