Repository URL to install this package:
|
Version:
1.0.3 ▾
|
scormxblock-xblock
/
setup.py
|
|---|
"""Setup for scormxblock XBlock."""
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}
setup(
name='scormxblock-xblock',
version='1.0.3',
description='scormxblock XBlock', # TODO: write a better description.
packages=[
'scormxblock',
],
install_requires=[
'XBlock',
],
entry_points={
'xblock.v1': [
'scormxblock = scormxblock:ScormXBlock',
]
},
package_data=package_data("scormxblock", ["static", "public", "locale"]),
license="Apache",
classifiers=[
"License :: OSI Approved :: Apache Software License",
]
)