X-Git-Url: https://code.grnet.gr/git/pithos/blobdiff_plain/f5d58753688a499fee4db8901e984c1d54418914..edb7875cc8b659780e2969c1cc7a55e5305a6180:/snf-pithos-backend/setup.py diff --git a/snf-pithos-backend/setup.py b/snf-pithos-backend/setup.py index fccf02e..968f137 100644 --- a/snf-pithos-backend/setup.py +++ b/snf-pithos-backend/setup.py @@ -65,10 +65,9 @@ CLASSIFIERS = [] # Package requirements INSTALL_REQUIRES = [ - 'Django>=1.2.3', - 'SQLAlchemy>=0.6.3', - 'MySQL-python>=1.2.2', - 'psycopg2>=2.2.1' + 'snf-common>0.9.13', + 'SQLAlchemy==0.6.3', + 'alembic>=0.3.4, <0.4', ] EXTRAS_REQUIRES = { @@ -80,7 +79,7 @@ TESTS_REQUIRES = [ # Provided as an attribute, so you can append to these instead # of replicating them: -standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"] +standard_exclude = ["*.pyc", "*$py.class", "*~", ".*", "*.bak"] standard_exclude_directories = [ ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7" ] @@ -185,12 +184,12 @@ setup( namespace_packages = ['pithos'], packages = PACKAGES, package_dir= {'': PACKAGES_ROOT}, + package_data=find_package_data("."), include_package_data = True, - package_data = find_package_data('.'), zip_safe = False, dependency_links = [ - 'http://docs.dev.grnet.gr/pypi/index.html'], + 'http://docs.dev.grnet.gr/pypi/'], install_requires = INSTALL_REQUIRES, extras_require = EXTRAS_REQUIRES, @@ -198,7 +197,8 @@ setup( entry_points = { 'console_scripts': [ - ], - }, + 'pithos-migrate = pithos.backends.migrate:main' + ], + }, )