Skip to content

Commit

Permalink
added long_description to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
perrette committed Oct 9, 2018
1 parent 26e9d4b commit 43fe5b8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -6,6 +6,9 @@
import versioneer
cmdclass = versioneer.get_cmdclass()

with open("README.rst", "r") as fh:
long_description = fh.read()

setup(name='dimarray',
version=versioneer.get_version(),
author='Mahe Perrette',
Expand All @@ -14,6 +17,8 @@
keywords=('labelled array','numpy','larry','pandas'),
packages = find_packages(),
package_data={'dimarray.datasets': ['data/*']},
long_description=long_description,
long_description_content_type="text/x-rst",
url='https://github.com/perrette/dimarray',
license = "BSD 3-Clause",
install_requires = ["numpy(>=1.7)","future"],
Expand Down

0 comments on commit 43fe5b8

Please sign in to comment.