-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
40 lines (36 loc) · 1.25 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='coursera_autograder',
version='0.1.4',
description='A toolkit to help develop asynchronous graders for Coursera\
based on docker images.',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.9',
],
keywords='grading programming coursera sdk docker cli tool',
url='https://github.com/coursera/coursera_autograder',
author='Joseph Li',
author_email='[email protected]',
license='Apache',
entry_points={
'console_scripts': [
'coursera_autograder = coursera_autograder.main:main',
],
},
packages=['coursera_autograder', 'coursera_autograder.commands'],
install_requires=[
'dockerfile-parse>=0.0.6',
'docker-py>=1.10.4',
'requests>=2.9.2',
'requests-toolbelt>=0.7.1',
'semver>=2.7.5',
],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
include_package_data=True,
zip_safe=False)