[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "assembly-theory"
dynamic = ["version", "license"]
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"