-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
35 lines (31 loc) · 966 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
32
33
34
35
[project]
name = "rehline"
version = "0.0.6"
description = "Regularized Composite ReLU-ReHU Loss Minimization with Linear Computation and Linear Convergence"
authors = [
{name = "Ben Dai", email = "[email protected]"},
{name = "Yixuan Qiu", email = "[email protected]"}
]
maintainers = [
{name = "Ben Dai", email = "[email protected]"},
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">= 3.10"
dependencies = [
"numpy >= 1.23.5",
"scipy >= 1.11.4",
"scikit-learn >= 1.2.2"
]
[pyproject.urls]
homepage = "https://rehline.github.io/"
repository = "https://github.com/softmin/ReHLine-python"
documentation = "https://rehline-python.readthedocs.io/en/latest/index.html"
[tool.setuptools]
py-modules = ["build"]
[tool.cibuildwheel]
# Only build on CPython
build = "cp*"
[build-system]
requires = ["requests ~= 2.31.0", "pybind11 ~= 2.13.0", "setuptools >= 69.0.0", "wheel >= 0.42.0"]
build-backend = "setuptools.build_meta"