Skip to content

Commit

Permalink
setup.py: add support for building universal wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Oct 24, 2016
1 parent 8a752fc commit 1103eb6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[metadata]
description-file = README.md

[bdist_wheel]
universal = 1
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

setup(
name='python-periphery',
Expand Down

0 comments on commit 1103eb6

Please sign in to comment.