forked from theSage21/openJudge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (35 loc) · 1.28 KB
/
setup.py
File metadata and controls
41 lines (35 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
import openjudge
version = '.'.join(map(str, openjudge.__version__))
long_desc = '''
Openjudge is a LAN based programming judge implementation in Python3.
Features
- Multi language support(Py2, Py3, C, C++, Java)
- Scalable
- Interface independent
- New languages can be added as and when required
- Complete control via interface, ie. Django admin for default interface
- Logging
- Tracebacks
- Timeouts
The default interface is available at --http://theSage21.github.io/judge-interface/
'''
setup(name='openjudge',
version=version,
description='LAN programming judge',
long_description=long_desc,
url='https://github.com/theSage21/openJudge',
author='Arjoonn Sharma',
author_email='Arjoonn Sharma',
license='MIT',
packages=['openjudge'],
zip_safe=False,
include_package_data=True,
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
],
keywords='judge programming check proof openjudge'.split(' '),
entry_points={'console_scripts': ['openjudge=openjudge.cli:main']},
)