-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (43 loc) · 1.52 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "phylodm"
version = "3.0.0"
dependencies = ["dendropy", "numpy"]
requires-python = ">=3.8"
description = "Efficient calculation of phylogenetic distance matrices."
readme = "README.md"
authors = [
{ name = "Aaron Mussig", email = "[email protected]" }
]
license = { file = "LICENSE" }
keywords = ["phylogenetic", "distance", "matrix", "symmetric"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
Homepage = "https://github.com/aaronmussig/PhyloDM"
Documentation = "https://github.com/aaronmussig/PhyloDM"
Repository = "https://github.com/aaronmussig/PhyloDM"
Issues = "https://github.com/aaronmussig/PhyloDM/issues"
Changelog = "https://github.com/aaronmussig/PhyloDM/blob/main/CHANGELOG.md"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3", "numpy", "python"]
python-source = "python"
module-name = "phylodm.pdm"
include = [
{ format = "sdist", path = ".cargo/*" },
{ format = "sdist", path = "Cargo.lock" },
]