-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
138 lines (122 loc) · 3.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
[tool.poetry]
authors = ["Yaniv Shulman <yaniv@shulman.info>"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
description = "Implementation of the Robust Local Polynomial Regression with Similarity Kernel draft paper"
homepage = "https://github.com/yaniv-shulman/rsklpr"
keywords = [
"statistics", "robust statistics", "regression", "robust regression", "local polynomial regression", "machine learning", "locally weighted regression",
]
name = "rsklpr"
packages = [
{ include = "rsklpr", from = "src" }
]
readme = "README.md"
repository = "https://github.com/yaniv-shulman/rsklpr"
version = "1.0.0"
[tool.poetry.group.experiments]
optional = true
[tool.poetry.group.dev]
optional = true
[tool.poetry.dependencies]
joblib = "^1.4.2"
numpy = "^2.0.2"
python = ">=3.9"
scikit-learn = "^1.5.2"
scipy = "^1.13.1"
[tool.poetry.group.experiments.dependencies]
chart-studio = "^1.1.0"
ipywidgets = "^8.1.5"
localreg = "^0.5.0"
matplotlib = "^3.9.2"
notebook = "^7.2.2"
pandas = "^2.2.3"
plotly = "^5.24.1"
statsmodels = "^0.14.3"
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^24.8.0"}
coverage = {extras = ["toml"], version = "^7.6.1"}
mypy = "^1.11.2"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
pytest-xdist = "^3.6.1"
ruff = "^0.6.8"
statsmodels = "^0.14.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".idea",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pycache__",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"paper",
"venv",
]
# Same as Black.
line-length = 120
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E4", "E7", "E9", "F"]
ignore = []
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "-ra -q --strict-markers"
markers = [
"slow: tests that take a long time to run",
]
minversion = "6.0"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
omit = ["tests/*", "src/experiments/*"]
[tool.coverage.report]
show_missing=true