Skip to content

Commit

Permalink
Add Wheel package support: Issue trentm#228
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Sep 22, 2018
1 parent 9121c02 commit afa8dcb
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 afa8dcb

Please sign in to comment.