8000
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 2acb45e commit f6c3d17Copy full SHA for f6c3d17
setup.py
@@ -12,6 +12,7 @@ def readlocal(fname):
12
AUTHOR_EMAIL = 'gdementen@gmail.com'
13
DESCRIPTION = "N-D labeled arrays in Python"
14
LONG_DESCRIPTION = readlocal("README.rst")
15
+LONG_DESCRIPTION_CONTENT_TYPE = "text/x-rst"
16
SETUP_REQUIRES = []
17
# - pandas >= 0.20.0 is required since commit 01669f2024a7bffe47cceec0a0fd845f71b6f7cc
18
# (issue 702 : fixed bug when writing metadata using HDF format)
@@ -46,6 +47,7 @@ def readlocal(fname):
46
47
classifiers=CLASSIFIERS,
48
description=DESCRIPTION,
49
long_description=LONG_DESCRIPTION,
50
+ long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
51
setup_requires=SETUP_REQUIRES,
52
install_requires=INSTALL_REQUIRES,
53
tests_require=TESTS_REQUIRE,
0 commit comments