Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from spinus/master
Browse files Browse the repository at this point in the history
setup.py update
  • Loading branch information
aartur committed May 9, 2015
2 parents f707694 + e8676dd commit 817e9e7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
setup(
name = 'mschematool',
version = '0.6.3',
packages = ['mschematool'],
packages = ['mschematool', 'mschematool.executors'],
install_requires = ['click==3.3'],
entry_points = {
'console_scripts': [
'mschematool = mschematool.cli:main',
]
},
extras_require = {
'postgresql': ['psycopg2'],
'cassandra': ['cassandra-driver', 'blist'],
},

author = 'Artur Siekielski',
author_email = 'artur.siekielski@vhex.net',
Expand All @@ -20,4 +24,11 @@
license = 'BSD',
keywords = 'database schema migrations postgresql postgres cassandra',
url = 'https://github.com/aartur/mschematool',
classifiers = [
'Topic :: Database',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)

0 comments on commit 817e9e7

Please sign in to comment.