Skip to content

Commit

Permalink
switch to find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
layterz committed Oct 17, 2011
1 parent 3e38af2 commit 25b6cc1
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,11 +1,11 @@
from distutils.core import setup
from setuptools import setup, find_packages

setup(
name = 'kickstart',
scripts = ['kickstart.py'],
packages = ['kickstart', 'kickstart/base'],
packages = find_packages(),
url = 'http://pypi.python.org/pypi/kickstart',
version = '0.21',
version = '0.22',
install_requires = ['PyYAML'],
description = 'Framework agnostic setup script',
author = 'Richard Layte',
Expand Down

0 comments on commit 25b6cc1

Please sign in to comment.