forked from jeffswt/pyjudge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 993 Bytes
/
setup.py
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
42
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='pyjudge',
version='0.2.0',
description='OI programs Judger in Python',
long_description='Judge OI programs easily with pyJudge.',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Education',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Pascal',
'Programming Language :: Python',
'Topic :: Education :: Testing',
],
keywords='judge judger oi',
url='https://github.com/jeffswt/pyjudge',
author='jeffswt',
author_email='',
license='GPLv3',
packages=[
'pyjudge',
'pyjudge.visualize'
],
install_requires=[
'mako',
'psutil'
],
entry_points={
'console_scripts': [
'pyjudge = pyjudge.shell:main'
],
},
)