-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 1.09 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "xensieve"
dynamic = ["version"]
description = "A Rust-backed implementation of the Xenakis Sieve"
authors = [{name = "Christopher Ariza"}]
maintainers = [{name = "Christopher Ariza"}]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Artistic Software",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed",
]
keywords = ["sieve", "residual", "modulus", "set", "xenakis"]
[project.urls]
Homepage = "https://github.com/flexatone/xensieve-py"
# Documentation = "https://readthedocs.org"
Repository = "https://github.com/flexatone/xensieve-py.git"
Issues = "https://github.com/flexatone/xensieve-py/issues"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.maturin]
features = ["pyo3/extension-module"]