df9a6111d88ef5099c7ab6c4f82424c0f1c84fb2
[pithos] / packaging / snf-pithos-backend.py
1 from defaults import setup_args
2
3 name = 'pithos.backends'
4
5 description = setup_args['description'] + ' (backend)'
6 setup_args.update({
7     'name': 'snf-pithos-backend',
8     'description': description,
9     'packages': [
10         'pithos.backends',
11         'pithos.backends.lib',
12         'pithos.backends.lib.hashfiler',
13         'pithos.backends.lib.sqlalchemy',
14         'pithos.backends.lib.sqlite'
15     ],
16     'install_requires': [
17         'snf-common',
18         'snf-pithos-lib',
19         'SQLAlchemy>=0.6.3',
20     ]
21 })