-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (25 loc) · 864 Bytes
/
pyproject.toml
File metadata and controls
33 lines (25 loc) · 864 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 = ["setuptools", "numpy>=1.12", "scipy>=0.18.0", "Cython>=0.26"]
build-backend = "setuptools.build_meta"
[project]
name = "celer"
dependencies =[
'libsvmdata>=0.3', 'scikit-learn>=1.0', 'xarray', 'download', 'tqdm'
]
description = "A fast algorithm with dual extrapolation for sparse problems"
authors = [
{name = "Mathurin Massias", email = "mathurin.massias@gmail.com"},
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "BSD (3-clause)"}
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "celer.__version__"}
[project.urls]
documentation = "https://mathurinm.github.io/celer/"
repository = "https://github.com/mathurinm/celer.git"
[project.optional-dependencies]
doc = [
"numpydoc", "pandas", "pillow", "matplotlib",
"furo", "sphinx-copybutton", "sphinx-gallery"
]