- integrate setuptools patch by Kevin Dangoor
- bump version to 0.4.2dev (0.4.1 will be released from branch bugfix-0_4_0)
This commit is contained in:
parent
3f0a4256c1
commit
1a24921de8
@ -10,3 +10,6 @@ theme=erosson.com
|
||||
doc-dir=docs/html
|
||||
doc-dest=scp://evan@erosson.com/var/opt/htdocs/evan/www/migrate/docs
|
||||
make-dirs=True
|
||||
|
||||
[egg_info]
|
||||
tag_svn_revision=1
|
||||
|
9
setup.py
9
setup.py
@ -8,10 +8,9 @@ except ImportError:
|
||||
pass
|
||||
|
||||
setup(
|
||||
name = "sqlalchemy-migrate",
|
||||
version = "0.4.1dev",
|
||||
name = "migrate",
|
||||
version = "0.4.2dev",
|
||||
packages = find_packages(exclude=['test*']),
|
||||
scripts = ['shell/migrate'],
|
||||
include_package_data = True,
|
||||
description = "Database schema migration for SQLAlchemy",
|
||||
long_description = """
|
||||
@ -33,5 +32,9 @@ Migrate extends SQLAlchemy to have database changeset handling. It provides a da
|
||||
maintainer_email = "jan@dittberner.info",
|
||||
license = "MIT",
|
||||
|
||||
entry_points = """
|
||||
[console_scripts]
|
||||
migrate = migrate.versioning.shell:main
|
||||
""",
|
||||
test_suite = "py.test.cmdline.main",
|
||||
)
|
||||
|
@ -1,4 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
from migrate.versioning.shell import main
|
||||
|
||||
main()
|
Loading…
x
Reference in New Issue
Block a user