Skip to content

Commit

Permalink
Merge pull request #304 from thombashi/wheel_support
Browse files Browse the repository at this point in the history
Add Wheel package support: Issue #228
  • Loading branch information
nicholasserra committed Oct 10, 2018
2 parents 8830f9d + afa8dcb commit 72f7a0b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -5,6 +5,7 @@ include CONTRIBUTORS.txt
include CHANGES.md
include Makefile
include setup.py
include setup.cfg

include bin/markdown2
include test/api.doctests
Expand Down
5 changes: 5 additions & 0 deletions setup.cfg
@@ -0,0 +1,5 @@
[aliases]
build=sdist bdist_wheel

[wheel]
universal = 1
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,8 +2,8 @@

import os
import sys
import distutils
from distutils.core import setup

from setuptools import setup

_top_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(_top_dir, "lib"))
Expand Down

0 comments on commit 72f7a0b

Please sign in to comment.