Skip to content

Commit

Permalink
#8: First version of the instalation.
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermechapiewski committed Feb 15, 2009
1 parent 6eedf37 commit 3a37bc1
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
@@ -0,0 +1,21 @@
from setuptools import setup, find_packages

setup(
name = "SimpleDBMigrate",
version = "1.0",
packages = find_packages("src"),
package_dir = {"":"src"},
include_package_data = True,

install_requires = ["mysql>=2.0"],

author = "Guilherme Chapiewski",
author_email = "guilherme.chapiewski@gmail.com",
description = "simple-db-migrate is a database versioning and migration tool inspired on Rails Migrations.",
license = "Apache License 2.0",
keywords = "database migration tool mysql",
url = "http://simple-db-migrate.lighthouseapp.com",
long_description = "simple-db-migrate is a database versioning and migration tool inspired on Rails Migrations. This tool helps you easily refactor, manage and track your database schema. The main difference is that Rails migrations are intended to be used only on Ruby projects while simple-db-migrate makes it possible to have migrations in any language (Java, Python, Ruby, PHP, whatever). This is possible because simple-db-migrate uses database's DDL (Data Definition Language) to do the database operations, while Rails Migrations are written in a Ruby internal DSL."
download_url = "http://github.com/guilhermechapiewski/simple-db-migrate"
)

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3a37bc1

Please sign in to comment.