Skip to content

Commit

Permalink
Merge pull request #86 from edx/dcs/find-packages
Browse files Browse the repository at this point in the history
Find all packages in setup.py
  • Loading branch information
Dave St.Germain authored Jul 2, 2020
2 parents c52fb2b + 65a2c34 commit 867f187
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import os

from setuptools import setup
from setuptools import setup, find_packages


def package_data(pkg, roots):
Expand Down Expand Up @@ -53,11 +53,7 @@ def is_requirement(line):
description='This XBlock implements the consumer side of the LTI specification.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=[
'lti_consumer',
'lti_consumer.lti_1p3',
'lti_consumer.plugin',
],
packages=find_packages(),
install_requires=load_requirements('requirements/base.in'),
dependency_links=[
'https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils',
Expand Down

0 comments on commit 867f187

Please sign in to comment.