Skip to content
This repository has been archived by the owner on Feb 14, 2018. It is now read-only.

Commit

Permalink
Fix setup.py installation to include subpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
gmr committed Jun 12, 2015
1 parent 83c1e91 commit 17c49e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion formulary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Formulary: Cloud-Formation Stack Management
"""
__version__ = '0.1.0'
__version__ = '0.1.1'

LOG_CONFIG = {
'version': 1,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
'Topic :: System :: Systems Administration']

setuptools.setup(name='formulary',
version='0.1.0',
version='0.1.1',
description='Easy management of AWS Cloud Formation stacks',
long_description=open('README.rst').read(),
author='Gavin M. Roy',
author_email='gavinr@aweber.com',
url='http://formulary.readthedocs.org',
packages=['formulary'],
packages=['formulary', 'formulary.builders', 'formulary.resources'],
package_data={'': ['LICENSE',
'README.rst',
'requirements.txt']},
Expand Down

0 comments on commit 17c49e4

Please sign in to comment.