-
Notifications
You must be signed in to change notification settings - Fork 20
/
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='courseraprogramming',
version='0.20.1',
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.7',
],
keywords='grading programming coursera sdk docker cli tool',
url='https://github.com/coursera/courseraprogramming',
author='Nikhil Garg',
author_email='[email protected]',
license='Apache',
entry_points={
'console_scripts': [
'courseraprogramming = courseraprogramming.main:main',
],
},
packages=['courseraprogramming', 'courseraprogramming.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)