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