Skip to content

Commit

Permalink
Modified setup to convert markdown to rst for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
the-useless-one committed Aug 26, 2016
1 parent 3be1acc commit 6d6415d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@

from setuptools import setup, find_packages

try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()

setup(name='pywerview',
version='0.1.0',
description='A Python port of PowerSploit\'s PowerView',
long_description=long_description,
dependency_links = ['https://github.com/CoreSecurity/impacket/tarball/master#egg=impacket-0.9.16dev'],
classifiers=[
'Environment :: Console',
Expand Down

0 comments on commit 6d6415d

Please sign in to comment.