Add code to make wheels
This commit is contained in:
parent
867e1c26fe
commit
2e2c23d9ae
3 changed files with 6 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -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
2
setup.cfg
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[bdist_wheel]
|
||||||
|
universal=1
|
1
setup.py
1
setup.py
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue