-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 1.1 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "assembly-theory"
dynamic = ["version", "license"] # Read from Cargo.toml.
description = "Open, reproducible calculation of assembly indices"
readme = "python/README.md"
requires-python = ">=3.10"
authors = [
{name = "Devansh Vimal", email = "dvpatel5@asu.edu"},
{name = "Garrett Parzych", email = "gparzych@asu.edu"},
{name = "Joshua Daymude", email = "jdaymude@asu.edu"},
{name = "Cole Mathis", email = "cole.mathis@asu.edu"},
]
maintainers = [
{name = "Devansh Vimal", email = "dvpatel5@asu.edu"},
{name = "Garrett Parzych", email = "gparzych@asu.edu"},
{name = "Joshua Daymude", email = "jdaymude@asu.edu"},
{name = "Cole Mathis", email = "cole.mathis@asu.edu"},
]
[project.urls]
Repository = "https://github.com/DaymudeLab/assembly-theory"
Documentation = "https://docs.rs/assembly-theory/latest/assembly_theory/python"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
python-packages = ["assembly_theory"]
[pytest]
testpaths = "python/tests"