Skip to content

Commit 55f18be

Browse files
authored
MAINT Fix distname and classifiers in setup.py (#52)
1 parent 3852a46 commit 55f18be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
with open(ver_file) as f:
1717
exec(f.read())
1818

19-
DISTNAME = "sklearn-extra"
19+
DISTNAME = "scikit-learn-extra"
2020
DESCRIPTION = "A set of tools for scikit-learn."
2121
with codecs.open("README.rst", encoding="utf-8-sig") as f:
2222
LONG_DESCRIPTION = f.read()
@@ -41,6 +41,8 @@
4141
"Programming Language :: Python :: 3.5",
4242
"Programming Language :: Python :: 3.6",
4343
"Programming Language :: Python :: 3.7",
44+
"Programming Language :: Python :: 3.8",
45+
"Programming Language :: Python :: Implementation :: CPython",
4446
]
4547
EXTRAS_REQUIRE = {
4648
"tests": ["pytest", "pytest-cov"],

0 commit comments

Comments
 (0)