-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
34 lines (26 loc) · 890 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
[build-system]
requires = ["setuptools", "numpy>=1.12", "scipy>=0.18.0", "Cython>=0.26"]
build-backend = "setuptools.build_meta"
[project]
name = "celer"
dependencies =[
'seaborn>=0.7', 'matplotlib>=2.0.0', '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 = "[email protected]"},
]
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",
"furo", "sphinx-copybutton", "sphinx-gallery"
]