forked from Stanford-Online/xblock-mufi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.3 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
import json
import setuptools
package_json_file = open('package.json', 'r')
package_json = json.load(package_json_file)
setuptools.setup(
name=package_json.get('name', 'xblock-test'),
version=package_json.get('version', '0.1.0'),
description=package_json.get('description'),
long_description=package_json.get('description'),
author=package_json.get('author', {}).get('name'),
author_email=package_json.get('author', {}).get('email'),
url=package_json.get('homepage'),
license='AGPL-3.0',
packages=[
'xblockmufi',
],
install_requires=[
'XBlock',
],
entry_points={
'xblock.v1': [
'xblockmufi = xblockmufi:XblockMufi',
],
},
package_dir={
'xblockmufi': 'xblockmufi',
},
package_data={
"xblockmufi": [
'public/*',
],
},
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',
],
)