From 1d0250d9ec728760186d123669a27ef0f85400cd Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 5 Aug 2014 14:01:09 +0530 Subject: Placed setup.py in the parent folder. pip install [git repo], this command will automatically run this setup file. --- MANIFEST.in | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 MANIFEST.in (limited to 'MANIFEST.in') diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..80c1688 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,7 @@ +include LICENSE +include README.rst +recursive-include testapp/exam/static * +recursive-include testapp/exam/templates * +recursive-include testapp/exam/management * +recursive-include testapp/exam/output * +recursive-include testapp/exam/fixtures * -- cgit From 009e421c7a9fce96164f820ec8cba3a6f206d567 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 5 Aug 2014 16:14:06 +0530 Subject: Modification in manifiest.in to exlude some files from the testapp package --- MANIFEST.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'MANIFEST.in') diff --git a/MANIFEST.in b/MANIFEST.in index 80c1688..6775565 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,11 @@ include LICENSE include README.rst +exclude testapp/production.py +exclude testapp/settings.py +exclude testapp/urls.py +exclude testapp/test_server.py +exclude testapp/manage.py +recursive-exclude testapp/myauthentication * recursive-include testapp/exam/static * recursive-include testapp/exam/templates * recursive-include testapp/exam/management * -- cgit