-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
31 lines (30 loc) · 1.17 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
import setuptools
setuptools.setup(
name='pedal',
version='2.7.0',
python_requires='>=3.7',
author='acbart,lukesg08',
author_email='[email protected]',
description='Tools to provide feedback on student code.',
keywords='feedback education teaching program analysis tifa cait sandbox pedal grading grader grade',
packages=['pedal', 'pedal.core', 'pedal.utilities', 'pedal.environments',
'pedal.resolvers', 'pedal.command_line',
'pedal.source', 'pedal.cait', 'pedal.tifa',
'pedal.sandbox', 'pedal.sandbox.library', 'pedal.assertions',
'pedal.questions', 'pedal.extensions', 'pedal.types', 'pedal.types.library'
],
license='Creative Commons Attribution-Noncommercial-Share Alike license',
long_description=open('README.rst').read(),
install_requires=["tabulate"],
entry_points={
'console_scripts': [
'pedal = pedal.command_line.command_line:main'
]
},
url='https://pedal-edu.github.io/pedal',
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"Topic :: Education",
]
)