Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Commit

Permalink
Merge pull request cam-stitt#7 from cam-stitt/better-packaging
Browse files Browse the repository at this point in the history
Use find_packages
  • Loading branch information
cam-stitt committed Apr 30, 2014
2 parents e623d74 + bf3483b commit 2df8589
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,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

install_requires = ['peewee', 'termcolor']

Expand All @@ -9,15 +9,15 @@

setup(
name='arnold',
version='0.3.6',
version='0.3.7',
description='Simple migrations for python ORMs',
long_description='',
keywords='python, peewee, migrations',
author='Cameron A. Stitt',
author_email='[email protected]',
url='https://github.com/cam-stitt/arnold',
license='BSD',
packages=['arnold'],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
Expand Down

0 comments on commit 2df8589

Please sign in to comment.