-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 786 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
30
31
32
33
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "genbooster"
version = "0.6.8"
description = "A fast boosting implementation using Rust and Python"
requires-python = ">=3.7"
authors = [
{name = "T. Moudiki", email = "thierry.moudiki@gmail.com"},
]
dependencies = [
"nnetsauce",
"numpy>=1.20.0",
"pandas",
"scikit-learn>=1.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
readme = "README.md"
[project.urls]
Repository = "https://github.com/yourusername/genbooster"
[tool.maturin]
python-source = "src"
module-name = "genbooster.rust_core"
features = ["pyo3/extension-module"]