forked from openlearninginitiative/xblock-submit-and-compare
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
86 lines (76 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
"""
Setup for submit-and-compare xblock
Note: The tox testing environemnt depends on version 0.1.2 of opaque_keys,
which is not available on PyPi. The dependency is included in
requirements.txt to match the version used Stanford-Online's
fork of edx-platform.
"""
import os
from setuptools import setup
from setuptools.command.test import test as TestCommand
def package_data(pkg, roots):
"""Generic function to find package_data for `pkg` under `root`."""
data = []
for root in roots:
for dirname, _, files in os.walk(os.path.join(pkg, root)):
for fname in files:
data.append(os.path.relpath(os.path.join(dirname, fname), pkg))
return {pkg: data}
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import tox
import shlex
args = self.tox_args
if args:
args = shlex.split(self.tox_args)
errno = tox.cmdline(args=args)
sys.exit(errno)
setup(
name='xblock-submit-and-compare',
version='0.7.0',
description='Submit and Compare XBlock for self assessment',
packages=[
'submit_and_compare',
],
install_requires=[
'coverage',
'django',
'django_nose',
'mako',
'mock',
'XBlock',
'xblock-utils',
],
dependency_links=[
'https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils',
],
entry_points={
'xblock.v1': [
'submit-and-compare = submit_and_compare:SubmitAndCompareXBlock',
]
},
package_dir={
'submit_and_compare': 'submit_and_compare',
},
package_data=package_data("submit_and_compare", ['static', 'templates']),
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Internet :: WWW/HTTP',
],
)