Skip to content

Commit

Permalink
correct list of packages in setup.py
Browse files Browse the repository at this point in the history
- needed to add find_packages() to get all sub-packages
  • Loading branch information
kosack committed Jan 24, 2017
1 parent 3fbe8b6 commit 23ebcdf
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 @@ -3,7 +3,7 @@
import sys

# import ah_bootstrap
from setuptools import setup
from setuptools import setup, find_packages

# Get some values from the setup.cfg
from configparser import RawConfigParser
Expand Down Expand Up @@ -37,7 +37,7 @@
package.version.update_release_version()

setup(name=PACKAGENAME,
packages=[PACKAGENAME],
packages=find_packages(),
version=package.version.get_version(pep440=True),
description=DESCRIPTION,
# these should be minimum list of what is needed to run (note
Expand Down

0 comments on commit 23ebcdf

Please sign in to comment.