-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 1.6 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "dask-glm"
description = "Generalized Linear Models with Dask"
readme = "README.rst"
license = "BSD-3-Clause"
maintainers = [{ name = "Matthew Rocklin", email = "mrocklin@gmail.com" }]
keywords = ["dask", "glm", "machine-learning"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"cloudpickle>=1.0",
"dask[array]>=2022.1.0",
"distributed>=2022.1.0",
"multipledispatch>=0.6.0",
"numba>=0.59",
"numpy>=1.21",
"scipy>=1.7",
"scikit-learn>=1.0",
"sparse>=0.15",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-xdist>=3.0",
"pre-commit>=3.0",
]
docs = [
"jupyter",
"nbsphinx",
"notebook",
"numpydoc",
"sphinx",
"sphinx_rtd_theme",
]
[project.urls]
Homepage = "https://github.com/dask/dask-glm"
Documentation = "https://dask-glm.readthedocs.io"
Repository = "https://github.com/dask/dask-glm"
[tool.setuptools]
packages = ["dask_glm"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.pytest.ini_options]
testpaths = ["dask_glm/tests"]
addopts = "-v"