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 ++++++ dist/django-exam-0.1.tar.gz | Bin 88221 -> 88311 bytes setup.py | 4 ++-- 3 files changed, 8 insertions(+), 2 deletions(-) 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 * diff --git a/dist/django-exam-0.1.tar.gz b/dist/django-exam-0.1.tar.gz index 1442001..6a5ef4a 100644 Binary files a/dist/django-exam-0.1.tar.gz and b/dist/django-exam-0.1.tar.gz differ diff --git a/setup.py b/setup.py index b69cbbb..6aabdc0 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import os -from setuptools import setup +from setuptools import setup, find_packages README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() @@ -11,7 +11,7 @@ setup( author='Prabhu Ramachandran', author_email='prabhu.ramachandran@gmail.com', version='0.1', - packages=['testapp.exam'], + packages=find_packages(), include_package_data=True, license='BSD License', entry_points = { -- cgit