Commit b956a555 by chrisndodge

Merge pull request #94 from edx/rc/2015-08-18

change over to use find_packages
parents a938e7f2 e4b26fc9
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
"""
We need python think this is a python module
"""
#!/usr/bin/env python #!/usr/bin/env python
from setuptools import setup from setuptools import setup, find_packages
def is_requirement(line): def is_requirement(line):
""" """
...@@ -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.1.0', version='0.6.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',
...@@ -49,7 +49,10 @@ setup( ...@@ -49,7 +49,10 @@ setup(
'Programming Language :: Python', 'Programming Language :: Python',
'Framework :: Django', 'Framework :: Django',
], ],
packages=['edx_proctoring'], packages=find_packages(exclude=["tests"]),
package_data={
'': ['*.html', '*.underscore', '*.png', '*.js', '*swf']
},
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