-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.04 KB
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name = 'pyjudge',
version = '0.1.79',
description = 'OI programs Judger in Python',
long_description = 'Judge OI programs easily with pyJudge.',
classifiers = [
'Development Status :: 4 - Beta',
'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'
],
},
)