-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1 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
[project]
name = "pypair"
version = "4.0.1"
description = "Pairwise association measures for categorical and continuous variables"
readme = "README.md"
requires-python = ">=3.13"
license = { text = "Apache-2.0" }
authors = [{ name = "Jee Vang" }]
dependencies = [
"numpy>=2.2",
"scipy>=1.15",
"scikit-learn>=1.6",
"pandas>=2.2",
"pyspark>=3.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-cov>=6.0",
"ruff>=0.12",
]
docs = [
"sphinx>=8.1",
"sphinx-rtd-theme>=3.0",
"sphinxcontrib-bibtex>=2.6",
"sphinx-sitemap>=2.8",
]
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.3",
"pytest-cov>=6.0",
"ruff>=0.12",
]
docs = [
"sphinx>=8.1",
"sphinx-rtd-theme>=3.0",
"sphinxcontrib-bibtex>=2.6",
"sphinx-sitemap>=2.8",
]
[tool.uv]
default-groups = ["dev"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 120
[tool.hatch.build.targets.wheel]
packages = ["pypair"]