Skip to content

Commit

Permalink
Merge pull request #16 from edx/mattdrayer/setup-find-packages
Browse files Browse the repository at this point in the history
mattdrayer/setup-find-packages: Use find_packages in setup.py
  • Loading branch information
mattdrayer committed Oct 20, 2015
2 parents fb6eaa7 + 59238a3 commit 4088018
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages

setup(
name='edx-milestones',
version='0.1.2',
version='0.1.3',
description='Significant events module for Open edX',
long_description=open('README.md').read(),
author='edX',
Expand All @@ -19,7 +19,7 @@
'Programming Language :: Python',
'Framework :: Django',
],
packages=['milestones'],
packages=find_packages(exclude=["tests"]),
dependency_links=[
],
install_requires=[
Expand Down

0 comments on commit 4088018

Please sign in to comment.