forked from vnmabus/dcor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (74 loc) · 1.87 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
[project]
name = "dcor"
description = "dcor: distance correlation and energy statistics in Python."
readme = "README.rst"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = [
"distance correlation",
"distance covariance",
"energy distance",
"e-statistic",
"dependency measure",
"homogeneity",
"independence",
]
authors = [
{name = "Carlos Ramos Carreño", email = "vnmabus@gmail.com"},
]
maintainers = [
{name = "Carlos Ramos Carreño", email = "vnmabus@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT 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",
]
dynamic = ["version"]
dependencies = [
"array-api-compat",
"joblib",
"numba>=0.51",
"numpy",
"scipy",
]
[project.optional-dependencies]
docs = [
"docutils==0.17.1",
"jupyter-sphinx",
"matplotlib",
"myst-parser",
"pygments>=2.4.1",
"pandas",
"pydata-sphinx-theme",
"sphinx>=3",
"sphinxcontrib-bibtex",
"sphinx-gallery",
]
test = [
"array-api-strict",
"numpy<2", # NumPy 2 changes array repr, affecting doctests.
"pytest",
"pytest-cov",
"pytest-subtests",
]
[project.urls]
homepage = "https://github.com/vnmabus/dcor"
documentation = "https://dcor.readthedocs.io"
repository = "https://github.com/vnmabus/dcor"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["dcor*"]
[tool.setuptools.dynamic]
version = {attr = "dcor.__version__"}