Skip to content

Commit

Permalink
update setup.py for better PyPI release
Browse files Browse the repository at this point in the history
  • Loading branch information
DonDebonair committed Mar 10, 2015
1 parent 84d549d commit 8e0f6d4
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@
with open('requirements.txt') as f:
dependencies = f.read().splitlines()

try:
import pypandoc
long_desc = pypandoc.convert('README.md', 'rst')
except ImportError:
long_desc = __doc__

setup(
name='athena',
version='0.5.0',
version='0.6.0',
url='https://github.com/datadudes/athena',
license='MIT',
author='Daan Debie, Marcel Krcah',
author_email='debie.daan@gmail.com, marcel.krcah@gmail.com',
description='Interact with your Hadoop cluster from the convenience of your local command line.',
long_description=__doc__,
long_description=long_desc,
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
Expand Down Expand Up @@ -44,10 +50,11 @@
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
# 'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Database',
'Topic :: Utilities',
]
)

0 comments on commit 8e0f6d4

Please sign in to comment.