-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 930 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
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "dinuc_shuf"
description = "A utility for shuffling biological sequences while preserving dinucleotide frequencies."
authors = [{ name = "Austin Wang" }]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 4 - Beta",
]
dynamic = ["version"]
dependencies = [
"numpy >= 1.16.0"
]
readme = "README.md"
license = "MIT"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
[project.urls]
Homepage = "https://github.com/austintwang/dinuc_shuf"
Documentation = "https://austintwang.github.io/dinuc_shuf"
Repository = "https://github.com/austintwang/dinuc_shuf.git"
"Bug Tracker" = "https://github.com/austintwang/dinuc_shuf/issues"