From 2e2c23d9ae007508feca2f948f5c0522da923ca2 Mon Sep 17 00:00:00 2001 From: Nick Timkovich Date: Wed, 1 Jun 2016 21:20:28 -0500 Subject: [PATCH] Add code to make wheels --- Makefile | 3 +++ setup.cfg | 2 ++ setup.py | 1 + 3 files changed, 6 insertions(+) create mode 100644 setup.cfg diff --git a/Makefile b/Makefile index b61b9b6..4ae3541 100644 --- a/Makefile +++ b/Makefile @@ -44,6 +44,9 @@ doc-latexpdf: publish: sdist python setup.py register sdist upload +publish_wheel: sdist + python setup.py bdist_wheel upload + test: python -m unittest feedgen.tests.test_feed python -m unittest feedgen.tests.test_entry diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup.py b/setup.py index 0df715e..a96055e 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +import setuptools from distutils.core import setup import feedgen.version