-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 824 Bytes
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
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "ppca-rs"
version = "0.5.1"
requires-python = ">=3.7"
description = "Python+Rust implementation of the Probabilistic Principal Component Analysis model"
readme = "readme.md"
classifiers = [
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["cffi", "numpy"]
[[project.authors]]
"name" = "Pedro B. Arruda"
"email" = "parruda@findhotel.net"
[project.urls]
"Homepage" = "https://github.com/FindHotel/ppca_rs"
[tool.maturin]
python-source = "python"
include = ["license", "Readme.md"]