-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (45 loc) · 1.75 KB
/
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
36
37
38
39
40
41
42
43
44
45
[project]
name = "scikit-datasets"
version = "0.2.4"
description = "Scikit-learn-compatible datasets"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["scikit-learn", "datasets", "repository", "benchmark", "Python"]
authors = [
{name = "David Diaz Vico", email = "[email protected]"},
{name = "Carlos Ramos Carreño", email = "[email protected]"},
]
maintainers = [
{name = "David Diaz Vico", email = "[email protected]"},
{name = "Carlos Ramos Carreño", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = ["numpy", "scipy", "scikit-learn"]
[project.optional-dependencies]
cran = ["rdata"]
forex = ["forex_python>=1.6"]
keel = ["pandas"]
keras = ["tensorflow"]
physionet = ["pandas", "wfdb"]
utils-estimator = ["jsonpickle"]
utils-experiments = ["sacred", "incense"]
utils-scores = ["statsmodels", "jinja2"]
all = ["scikit-datasets[cran, forex, keel, keras, physionet, utils-estimator, utils-experiments, utils-scores]"]
test = ["pytest", "pytest-cov[all]", "coverage", "scikit-datasets[all]"]
[project.urls]
homepage = "https://github.com/daviddiazvico/scikit-datasets"
documentation = "https://daviddiazvico.github.io/scikit-datasets/"
repository = "https://github.com/daviddiazvico/scikit-datasets"
download = "https://github.com/daviddiazvico/scikit-datasets/archive/v0.2.2.tar.gz"
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"] # PEP 508 specifications.