-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 859 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 859 Bytes
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
import setuptools
setuptools.setup(
name='sp_autograder',
packages=setuptools.find_packages(),
version='0.2.2',
license='MIT',
description='A Python-backed customizable autograder.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='Parth Sarin',
author_email='psarin@stanford.edu',
url='https://github.com/stanfordpython/autograder',
keywords=['EDUCATION', 'TESTING', 'AUTOGRADER'],
install_requires=[
'pycodestyle>=2.5.0',
],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
]
)