Skip to content

Commit

Permalink
Change setup.py to use find_packages so we get subdirectories - see P…
Browse files Browse the repository at this point in the history
  • Loading branch information
rhunwicks committed Jul 13, 2016
1 parent 8fe5133 commit f917f2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
import sys

from setuptools import setup, Command
from setuptools import setup, find_packages, Command

long_description = codecs.open("README.md", "r", "utf-8").read()

Expand Down Expand Up @@ -154,7 +154,7 @@ def finalize_options(self):
author_email=meta['contact'],
url=meta['homepage'],
long_description=long_description,
packages=[NAME],
packages=find_packages(),
license='BSD',
platforms=['any'],
classifiers=CLASSIFIERS,
Expand Down

0 comments on commit f917f2f

Please sign in to comment.