-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.54 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
# Setup file to instantiate installation of package from command line. setup.py is deprecated
# Update file with new version every time it is updated:
# - version="1.0.0" -> version="1.0.1" for a small change that patches bugs that do not alter compatability
# - version="1.0.0" -> version="1.1.0" for a minor change that adds new features but does not break compatability
# - version="1.0.0" -> version="2.0.0" for a major change that breaks compatability with the previous version
[build-system]
requires = ["setuptools>=72.1.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "hot_deck_imputer"
version = "1.0.0"
description = "A package to conduct hot deck imputation methods over polars frames"
authors = [{name = "Jameson Carter", email = "[email protected]" }]
readme = "README.md"
requires-python = '>=3.12.4'
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"colorama == 0.4.6",
"iniconfig == 2.0.0",
"numpy == 2.0.1",
"packaging == 24.1",
"pandas == 2.2.2",
"patsy == 1.0.1",
"pluggy == 1.5.0",
"polars == 1.16.0",
"pyarrow == 17.0.0",
"python-dateutil == 2.9.0.post0",
"pytz == 2024.1",
"scipy == 1.14.1",
"six == 1.16.0",
"statsmodels == 0.14.4",
"tzdata == 2024.1",
"XlsxWriter == 3.2.0"
]
[project.urls]
Homepage = "https://github.com/UI-Research/hot-deck"