Skip to content

Commit

Permalink
Add wheel support
Browse files Browse the repository at this point in the history
  • Loading branch information
sesh committed Dec 1, 2015
1 parent 4172272 commit ce9a67b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[wheel]
universal = 1
8 changes: 8 additions & 0 deletions setup.py
@@ -1,10 +1,18 @@
import sys
from setuptools import setup

"""
Use pandoc to convert README.md to README.rst before uploading
pandoc README.md -o README.rst
"""


if 'publish' in sys.argv:
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
sys.exit()


setup(
name='piprot',
version='0.9.5',
Expand Down

0 comments on commit ce9a67b

Please sign in to comment.