Skip to content

Commit 1cc4201

Browse files
MNT update extras_require and author info
1 parent 60f1286 commit 1cc4201

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

setup.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
except FileNotFoundError:
2929
LONG_DESCRIPTION = DESCRIPTION
3030

31+
AUTHOR = "Zhining Liu"
32+
AUTHOR_EMAIL = "[email protected]"
3133
MAINTAINER = "Zhining Liu"
3234
MAINTAINER_EMAIL = "[email protected]"
3335
URL = "https://github.com/ZhiningLiu1998/imbalanced-ensemble"
@@ -69,15 +71,15 @@
6971
"tqdm>=4.50.2",
7072
]
7173
EXTRAS_REQUIRE = {
72-
# "dev": [
73-
# "black",
74-
# "flake8",
75-
# ],
76-
"tests": [
74+
"dev": [
75+
"black",
76+
"flake8",
77+
],
78+
"test": [
7779
"pytest",
7880
"pytest-cov",
7981
],
80-
"docs": [
82+
"doc": [
8183
"sphinx",
8284
"sphinx-gallery",
8385
"numpydoc",
@@ -86,9 +88,10 @@
8688
],
8789
}
8890

89-
9091
setup(
9192
name=DISTNAME,
93+
author=AUTHOR,
94+
author_email=AUTHOR_EMAIL,
9295
maintainer=MAINTAINER,
9396
maintainer_email=MAINTAINER_EMAIL,
9497
description=DESCRIPTION,
@@ -103,4 +106,4 @@
103106
packages=find_packages(),
104107
install_requires=INSTALL_REQUIRES,
105108
extras_require=EXTRAS_REQUIRE,
106-
)
109+
)

0 commit comments

Comments
 (0)