Skip to content

Commit

Permalink
make sdist work
Browse files Browse the repository at this point in the history
  • Loading branch information
v0lat1le committed Jul 8, 2016
1 parent abd0f1a commit 26ed888
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
#!/usr/bin/env python

import os
from setuptools import setup, find_packages
import versioneer


here = os.path.dirname(os.path.abspath(__file__))
long_description = open(os.path.join(here, 'README.md'), 'r').read()


setup(name='datacube',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
Expand Down Expand Up @@ -53,7 +58,7 @@
maintainer='AGDC Collaboration',
maintainer_email='',
description='AGDC v2',
long_description=open('README.md', 'r').read(),
long_description=long_description,
license='Apache License 2.0',
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 26ed888

Please sign in to comment.