diff options
-rw-r--r-- | MANIFEST.in | 6 | ||||
-rw-r--r-- | dist/django-exam-0.1.tar.gz | bin | 88221 -> 88311 bytes | |||
-rw-r--r-- | 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 Binary files differindex 1442001..6a5ef4a 100644 --- a/dist/django-exam-0.1.tar.gz +++ b/dist/django-exam-0.1.tar.gz @@ -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 = { |