Revision: 9df66b60b0
Author: krishnan.parthasarathi
Date: Mon Nov 15 11:54:21 2010
Log: Added distutils support for cc_backend modules
http://code.google.com/p/codechecker/source/detail?r=9df66b60b0
Revision: 6c74359ca9
Author: krishnan.parthasarathi
Date: Mon Nov 15 11:59:00 2010
Log: Fixed typo in doc string for storage_interface
http://code.google.com/p/codechecker/source/detail?r=6c74359ca9
Revision: 9be80e89be
Author: krishnan.parthasarathi
Date: Mon Nov 15 12:02:17 2010
Log: Removed old hack for internal python module 'access'
http://code.google.com/p/codechecker/source/detail?r=9be80e89be
==============================================================================
Revision: 9df66b60b0
Author: krishnan.parthasarathi
Date: Mon Nov 15 11:54:21 2010
Log: Added distutils support for cc_backend modules
http://code.google.com/p/codechecker/source/detail?r=9df66b60b0
Added:
/MANIFEST.in
/setup.py
=======================================
--- /dev/null
+++ /MANIFEST.in Mon Nov 15 11:54:21 2010
@@ -0,0 +1,2 @@
+exclude cc_backend/src/Checker.py
+exclude cc_backend/src/Config.py
=======================================
--- /dev/null
+++ /setup.py Mon Nov 15 11:54:21 2010
@@ -0,0 +1,18 @@
+from distutils.core import setup
+
+setup(name='codechecker',
+ version='1.0',
+ description='Codechecker components',
+ long_description='A Python based software to host'
+ 'Online Programming Contests',
+ author='Suren, Aditya and Krishnan',
+ author_email='codec...@googlecode.com',
+ license='GPLv3',
+ url='http://code.google.com/p/codechecker',
+ platforms='All',
+
packages=['cc_backend', 'cc_backend.compiler', 'cc_backend.evaluator',
+ 'cc_backend.score', 'cc_backend.se', 'cc_backend.store'],
+ package_dir={'cc_backend' : 'cc_backend/src'}
+ )
+
+
==============================================================================
Revision: 6c74359ca9
Author: krishnan.parthasarathi
Date: Mon Nov 15 11:59:00 2010
Log: Fixed typo in doc string for storage_interface
http://code.google.com/p/codechecker/source/detail?r=6c74359ca9
Modified:
/cc_backend/src/store/storage_interface.py
=======================================
--- /cc_backend/src/store/storage_interface.py Thu Nov 11 11:00:17 2010
+++ /cc_backend/src/store/storage_interface.py Mon Nov 15 11:59:00 2010
@@ -80,7 +80,7 @@
"timelimit" : "time limit for a submisson for this testgroup",
- "memlimit" : "time limit for a submisson for this testgroup",
+ "memlimit" : "memory limit for a submisson for this
testgroup",
"input_files" : [list of input file names] each of the form
submission_id.in and corresponding outfile
==============================================================================
Revision: 9be80e89be
Author: krishnan.parthasarathi
Date: Mon Nov 15 12:02:17 2010
Log: Removed old hack for internal python module 'access'
http://code.google.com/p/codechecker/source/detail?r=9be80e89be
Modified:
/cc_backend/src/__init__.py
=======================================
--- /cc_backend/src/__init__.py Thu Oct 28 13:11:56 2010
+++ /cc_backend/src/__init__.py Mon Nov 15 12:02:17 2010
@@ -1,3 +0,0 @@
-from os.path import dirname
-import sys
-sys.path.insert(0, dirname(__file__))