Skip to content

Commit a31ee8b

Browse files
authored
Merge pull request #192 from scikit-learn-contrib/fix-linting-problem-in-setup
2 parents 7dd6a7e + b067aa3 commit a31ee8b

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

mapie/__init__.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,11 @@
44

55
from ._version import __version__
66

7-
__all__ = ["regression", "classification", "metrics", "__version__"]
7+
__all__ = [
8+
"regression",
9+
"classification",
10+
"quantile_regression",
11+
"time_series_regression",
12+
"metrics",
13+
"__version__"
14+
]

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
DISTNAME = "MAPIE"
66
VERSION = "0.4.1"
77
DESCRIPTION = (
8-
"A scikit-learn-compatible module for estimating prediction intervals."
8+
"A scikit-learn-compatible module "
9+
"for estimating prediction intervals."
910
)
1011
with codecs.open("README.rst", encoding="utf-8-sig") as f:
1112
LONG_DESCRIPTION = f.read()
@@ -19,7 +20,12 @@
1920
}
2021
LICENSE = "new BSD"
2122
MAINTAINER = "V. Taquet, V. Blot, T. Morzadec, G. Martinon"
22-
23+
MAINTAINER_EMAIL = (
24+
25+
26+
27+
28+
)
2329
PYTHON_REQUIRES = ">=3.7"
2430
PACKAGES = find_packages()
2531
INSTALL_REQUIRES = ["scikit-learn", "numpy>=1.21", "packaging"]

0 commit comments

Comments
 (0)