Add code to make wheels

This commit is contained in:
Nick Timkovich 2016-06-01 21:20:28 -05:00
parent 867e1c26fe
commit 2e2c23d9ae
3 changed files with 6 additions and 0 deletions

View file

@ -44,6 +44,9 @@ doc-latexpdf:
publish: sdist publish: sdist
python setup.py register sdist upload python setup.py register sdist upload
publish_wheel: sdist
python setup.py bdist_wheel upload
test: test:
python -m unittest feedgen.tests.test_feed python -m unittest feedgen.tests.test_feed
python -m unittest feedgen.tests.test_entry python -m unittest feedgen.tests.test_entry

2
setup.cfg Normal file
View file

@ -0,0 +1,2 @@
[bdist_wheel]
universal=1

View file

@ -1,6 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import setuptools
from distutils.core import setup from distutils.core import setup
import feedgen.version import feedgen.version