-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (89 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
103 lines (89 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "microimpute"
version = "1.15.1"
description = "Benchmarking imputation methods for microdata"
readme = "README.md"
authors = [
{ name = "María Juaristi", email = "juaristi@uni.minerva.edu" },
{ name = "Nikhil Woodruff", email = "nikhil.woodruff@outlook.com" }
]
requires-python = ">=3.12,<3.15"
dependencies = [
"numpy>=2.0.0,<3.0.0",
"pandas>=2.2.0,<4.0.0",
"plotly>=5.24.0,<7.0.0",
"scikit-learn>=1.7.0,<2.0.0",
"scipy>=1.16.0,<2.0.0",
"requests>=2.32.0,<3.0.0",
"tqdm>=4.65.0,<5.0.0",
"statsmodels>=0.14.5,<0.16.0",
"quantile-forest>=1.4.1,<1.5.0",
"pydantic>=2.8.0,<3.0.0",
"optuna>=4.3.0,<5.0.0",
"joblib>=1.5.0,<2.0.0",
"psutil",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0,<10.0.0",
"pytest-cov>=6.0.0,<8.0.0",
"ruff>=0.9.0",
"mypy>=1.2.3,<2.0.0",
"build>=1.2.0,<2.0.0",
"towncrier>=24.8.0",
]
matching = [
"rpy2>=3.5.0,<4.0.0",
]
mdn = [
"pytorch-tabular>=1.1.0",
"torch>=2.0.0",
]
docs = [
"jupyter-book",
"furo>=2024.0.0", # Sphinx theme for documentation
"ipywidgets>=8.0.0,<9.0.0",
"plotly>=5.24.0,<7.0.0",
"h5py>=3.1.0,<4.0.0",
]
images = [
"kaleido>=0.2.1,<0.3.0", # For exporting plots as PNG/JPG
]
[tool.setuptools]
packages = ["microimpute"]
include-package-data = true
[tool.setuptools.package-data]
"microimpute" = ["**/*"]
[tool.towncrier]
package = "microimpute"
directory = "changelog.d"
filename = "CHANGELOG.md"
title_format = "## [{version}] - {project_date}"
issue_format = ""
underlines = ["", "", ""]
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking changes"
showcontent = true
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed"
showcontent = true