summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprathamesh2014-08-05 14:01:09 +0530
committerprathamesh2014-08-05 14:01:09 +0530
commit1d0250d9ec728760186d123669a27ef0f85400cd (patch)
treefb6269a985fbfa7220299587d7825441e30c8be0
parentecc920b833ddd7e163213afc7390fd958991dcf2 (diff)
downloadonline_test-1d0250d9ec728760186d123669a27ef0f85400cd.tar.gz
online_test-1d0250d9ec728760186d123669a27ef0f85400cd.tar.bz2
online_test-1d0250d9ec728760186d123669a27ef0f85400cd.zip
Placed setup.py in the parent folder.
pip install [git repo], this command will automatically run this setup file.
-rw-r--r--LICENSE (renamed from testapp/LICENSE)2
-rw-r--r--MANIFEST.in7
-rw-r--r--dist/django-exam-0.1.tar.gzbin0 -> 88231 bytes
-rw-r--r--setup.py (renamed from testapp/setup.py)4
-rw-r--r--testapp/MANIFEST.in7
-rw-r--r--testapp/dist/django-exam-0.1.tar.gzbin85437 -> 0 bytes
6 files changed, 10 insertions, 10 deletions
diff --git a/testapp/LICENSE b/LICENSE
index 8b49593..6d24163 100644
--- a/testapp/LICENSE
+++ b/LICENSE
@@ -1,3 +1,3 @@
-This is distributed under the terms of the BSD license.
+This is distributed under the terms of the BSD license.
Copyright (c) 2011 Prabhu Ramachandran and FOSSEE (fossee.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 *
diff --git a/dist/django-exam-0.1.tar.gz b/dist/django-exam-0.1.tar.gz
new file mode 100644
index 0000000..c132642
--- /dev/null
+++ b/dist/django-exam-0.1.tar.gz
Binary files differ
diff --git a/testapp/setup.py b/setup.py
index 233caeb..b69cbbb 100644
--- a/testapp/setup.py
+++ b/setup.py
@@ -11,12 +11,12 @@ setup(
author='Prabhu Ramachandran',
author_email='prabhu.ramachandran@gmail.com',
version='0.1',
- packages=['exam'],
+ packages=['testapp.exam'],
include_package_data=True,
license='BSD License',
entry_points = {
'console_scripts': [
- 'code_server = exam.code_server:main',
+ 'code_server = exam.code_server:main',
],
},
description='A django app to conduct online test.',
diff --git a/testapp/MANIFEST.in b/testapp/MANIFEST.in
deleted file mode 100644
index 2c50f50..0000000
--- a/testapp/MANIFEST.in
+++ /dev/null
@@ -1,7 +0,0 @@
-include LICENSE
-include README.rst
-recursive-include exam/static *
-recursive-include exam/templates *
-recursive-include exam/management *
-recursive-include exam/output *
-recursive-include exam/fixtures *
diff --git a/testapp/dist/django-exam-0.1.tar.gz b/testapp/dist/django-exam-0.1.tar.gz
deleted file mode 100644
index 442f4f2..0000000
--- a/testapp/dist/django-exam-0.1.tar.gz
+++ /dev/null
Binary files differ