diff options
author | prathamesh | 2014-08-05 14:01:09 +0530 |
---|---|---|
committer | prathamesh | 2014-08-05 14:01:09 +0530 |
commit | 1d0250d9ec728760186d123669a27ef0f85400cd (patch) | |
tree | fb6269a985fbfa7220299587d7825441e30c8be0 | |
parent | ecc920b833ddd7e163213afc7390fd958991dcf2 (diff) | |
download | online_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.in | 7 | ||||
-rw-r--r-- | dist/django-exam-0.1.tar.gz | bin | 0 -> 88231 bytes | |||
-rw-r--r-- | setup.py (renamed from testapp/setup.py) | 4 | ||||
-rw-r--r-- | testapp/MANIFEST.in | 7 | ||||
-rw-r--r-- | testapp/dist/django-exam-0.1.tar.gz | bin | 85437 -> 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 Binary files differnew file mode 100644 index 0000000..c132642 --- /dev/null +++ b/dist/django-exam-0.1.tar.gz 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 Binary files differdeleted file mode 100644 index 442f4f2..0000000 --- a/testapp/dist/django-exam-0.1.tar.gz +++ /dev/null |