summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in6
-rw-r--r--dist/django-exam-0.1.tar.gzbin88221 -> 88311 bytes
-rw-r--r--setup.py4
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
--- a/dist/django-exam-0.1.tar.gz
+++ b/dist/django-exam-0.1.tar.gz
Binary files 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 = {