Commit db4fa67d by Chris Dodge

also specify include_package_data=True

parent 04d389f2
...@@ -34,7 +34,7 @@ def load_requirements(*requirements_paths): ...@@ -34,7 +34,7 @@ def load_requirements(*requirements_paths):
setup( setup(
name='edx-proctoring', name='edx-proctoring',
version='0.2.0', version='0.3.0',
description='Proctoring subsystem for Open edX', description='Proctoring subsystem for Open edX',
long_description=open('README.md').read(), long_description=open('README.md').read(),
author='edX', author='edX',
...@@ -50,6 +50,7 @@ setup( ...@@ -50,6 +50,7 @@ setup(
'Framework :: Django', 'Framework :: Django',
], ],
packages=find_packages(exclude=["tests"]), packages=find_packages(exclude=["tests"]),
include_package_data=True,
dependency_links=[ dependency_links=[
], ],
install_requires=load_requirements('requirements.txt'), install_requires=load_requirements('requirements.txt'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment