More packaging crap.

Did I tell you how much I hate python packaging?

fragments.py: track recent change in class decorators.
This commit is contained in:
rocky
2016-05-13 23:35:31 -04:00
parent e0eba6998f
commit de0ec195b7
5 changed files with 16 additions and 10 deletions

View File

@@ -44,9 +44,9 @@ clean: clean_pyc
$(PYTHON) ./setup.py $@
(cd test && $(MAKE) clean)
#: Create source (tarball) and binary (egg) distribution
#: Create source (tarball) and wheel distribution
dist:
$(PYTHON) ./setup.py sdist bdist_egg
$(PYTHON) ./setup.py sdist bdist_wheel
#: Remove .pyc files
clean_pyc:
@@ -73,6 +73,11 @@ bdist_egg:
$(PYTHON) ./setup.py bdist_egg
#: Create binary wheel distribution
bdist_wheel:
$(PYTHON) ./setup.py bdist_wheel
# It is too much work to figure out how to add a new command to distutils
# to do the following. I'm sure distutils will someday get there.
DISTCLEAN_FILES = build dist *.pyc