This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
63 lines (53 loc) · 1.66 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
"""Setup for ubcpi XBlock."""
from __future__ import absolute_import
import os
from setuptools import setup
def package_data(pkg, roots):
"""Generic function to find package_data.
All of the files under each of the `roots` will be declared as package
data for package `pkg`.
"""
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}
def readme():
if os.path.exists('README.rst'):
with open('README.rst') as f:
return f.read()
else:
# fallback to a default description
return 'UBC Peer Instruction Tool'
setup(
name='ubcpi-xblock',
version='1.0.0',
description='UBC Peer Instruction XBlock',
long_description=readme(),
license='Affero GNU General Public License v3 (GPLv3)',
url="https://github.com/ubc/ubcpi",
author="UBC CTLT",
author_email="[email protected]",
packages=['ubcpi'],
install_requires=[
'XBlock',
],
entry_points={
'xblock.v1': [
'ubcpi = ubcpi.ubcpi:PeerInstructionXBlock',
]
},
package_data=package_data("ubcpi", ["static", "public", "translations"]),
keywords=['edx', 'peer instruction', 'ubc'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Framework :: Django",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Topic :: Education",
],
)