Skip to content
Snippets Groups Projects
Unverified Commit 867f1874 authored by Dave St.Germain's avatar Dave St.Germain Committed by GitHub
Browse files

Merge pull request #86 from edx/dcs/find-packages

Find all packages in setup.py
parents c52fb2b6 65a2c34f
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import os import os
from setuptools import setup from setuptools import setup, find_packages
def package_data(pkg, roots): def package_data(pkg, roots):
...@@ -53,11 +53,7 @@ setup( ...@@ -53,11 +53,7 @@ setup(
description='This XBlock implements the consumer side of the LTI specification.', description='This XBlock implements the consumer side of the LTI specification.',
long_description=long_description, long_description=long_description,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
packages=[ packages=find_packages(),
'lti_consumer',
'lti_consumer.lti_1p3',
'lti_consumer.plugin',
],
install_requires=load_requirements('requirements/base.in'), install_requires=load_requirements('requirements/base.in'),
dependency_links=[ dependency_links=[
'https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils', 'https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment