-
Notifications
You must be signed in to change notification settings - Fork 58
/
pyproject.toml
84 lines (77 loc) · 1.95 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "scikit-fda"
description = "Functional Data Analysis Python package."
readme = "README.rst"
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
keywords = [
"functional data",
"statistics",
"machine learning",
]
maintainers = [
{name = "Carlos Ramos Carreño", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"dcor",
"fdasrsf>=2.2.0, !=2.5.7",
"findiff",
"lazy_loader",
"matplotlib",
"multimethod>=1.5, !=1.11, != 1.11.1",
"numpy>=1.16",
"pandas>=1.0",
"rdata",
"scikit-datasets[cran]>=0.2.2",
"scikit-learn>=0.20",
"scipy>=1.6.0",
"typing-extensions",
]
[project.optional-dependencies]
docs = [
"cartopy",
"ipykernel",
"jupyter-sphinx",
"myst-parser",
"pillow",
"pydata-sphinx-theme",
"pytest",
"setuptools>=41.2",
"sphinx>=3",
"sphinx-gallery",
"sphinxcontrib-bibtex",
]
test = [
"numpy>=2", # Changes in array representation.
"pytest",
"pytest-env",
"pytest-subtests",
"scipy>=1.14", # Changes in sparse array representation.
]
[project.urls]
homepage = "https://github.com/GAA-UAM/scikit-fda"
documentation = "https://fda.readthedocs.io"
repository = "https://github.com/GAA-UAM/scikit-fda"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["skfda*"]
[tool.setuptools.dynamic]
version = {attr = "skfda.__version__"}