We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 251650b commit eb129c4Copy full SHA for eb129c4
setup.py
@@ -1,7 +1,4 @@
1
#! /usr/bin/env python
2
-"""A template for scikit-learn compatible packages."""
3
-
4
-import codecs
5
import os
6
7
from setuptools import find_packages, setup, Extension
@@ -18,7 +15,7 @@
18
15
19
16
DISTNAME = "scikit-learn-extra"
20
17
DESCRIPTION = "A set of tools for scikit-learn."
21
-with codecs.open("README.rst", encoding="utf-8-sig") as f:
+with open("README.rst", encoding="utf-8") as f:
22
LONG_DESCRIPTION = f.read()
23
URL = "https://github.com/scikit-learn-contrib/scikit-learn-extra"
24
LICENSE = "new BSD"
@@ -91,6 +88,7 @@
91
88
setup(
92
89
name=DISTNAME,
93
90
description=DESCRIPTION,
+ long_description_content_type="text/x-rst",
94
license=LICENSE,
95
url=URL,
96
version=VERSION,
0 commit comments