Commit d12def45 authored by Martín Ferrari's avatar Martín Ferrari

Rename tests; update MANIFEST; add MANIFEST target to Makefile

parent b9c084da
...@@ -4,8 +4,8 @@ sample-api.py ...@@ -4,8 +4,8 @@ sample-api.py
setup.cfg setup.cfg
setup.py setup.py
src/netns/__init__.py src/netns/__init__.py
t/core.py t/test_core.py
t/interfaces.py t/test_interfaces.py
t/node.py t/test_node.py
t/subprocess.py t/test_routing.py
t/routing.py t/test_subprocess.py
...@@ -35,7 +35,13 @@ clean: ...@@ -35,7 +35,13 @@ clean:
distclean: clean distclean: clean
rm -rf "$(DISTDIR)" rm -rf "$(DISTDIR)"
dist: MANIFEST:
find . -path ./.hg -prune -o -path ./build -prune -o \
-name \*.pyc -prune -o -name \*.swp -prune -o \
-name MANIFEST -prune -o -type f -print | \
sed 's#^\./##' | sort > MANIFEST
dist: MANIFEST
./setup.py sdist ./setup.py sdist
.PHONY: clean distclean dist test coverage install .PHONY: clean distclean dist test coverage install MANIFEST
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment