-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
56 lines (53 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
import client
VERSION = client.__version__
setup(
name='okpy',
version=VERSION,
author='John Denero, Soumya Basu, Stephen Martinis, Sharad Vikram, Albert Wu',
# author_email='',
description=('ok.py supports programming projects by running tests, '
'tracking progress, and assisting in debugging.'),
# long_description=long_description,
url='https://github.com/okpy/ok-client',
# download_url='https://github.com/okpy/ok/releases/download/v{}/ok'.format(VERSION),
license='Apache License, Version 2.0',
keywords=['education', 'autograding'],
packages=find_packages(include=[
'client',
'client.*',
]),
package_data={
'client': ['config.ok'],
},
# install_requires=[],
entry_points={
'console_scripts': [
'ok=client.cli.ok:main',
'ok-publish=client.cli.publish:main',
'ok-lock=client.cli.lock:main',
'ok-test=client.cli.test:main',
],
},
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'requests==2.31.0',
'certifi==2019.11.28',
'urllib3==1.26.17',
'chardet==3.0.4',
'idna==2.8',
'coverage==7.3.2',
'pytutor==1.0.0',
'ast-scope==0.3.1',
'attrs==19.3.0',
'pyaes==1.6.1',
'colorama==0.4.6',
'display-timedelta==1.1',
'filelock==3.0.12',
'lark==0.12.0',
],
)