update setup.py

This commit is contained in:
iElectric 2010-05-03 13:01:58 +02:00
parent 6ddf8e0212
commit dd756a512f
2 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,5 @@
include CHANGELOG
include README
recursive-include docs *
recursive-include migrate *
recursive-include tests *
global-exclude *pyc

View File

@ -9,10 +9,6 @@ except ImportError:
use_setuptools()
from setuptools import setup, find_packages
try:
import buildutils
except ImportError:
pass
test_requirements = ['nose >= 0.10', 'ScriptTest==1.0.1']
required_deps = ['sqlalchemy >= 0.5', 'decorator', 'tempita']
@ -20,7 +16,7 @@ readme_file = open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'REA
setup(
name = "sqlalchemy-migrate",
version = "0.5.5",
version = "0.6",
packages = find_packages(exclude=['tests*']),
include_package_data = True,
description = "Database schema migration for SQLAlchemy",