forked from benblamey/HasteStorageClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 724 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
from setuptools import setup
setup(name='haste_storage_client',
version='0.13',
packages=['haste_storage_client',
'haste_storage_client.models',
'haste_storage_client.storage'
],
description='Client for the HASTE storage plaform: http://haste.research.it.uu.se',
author='Ben Blamey',
author_email='ben.blamey@it.uu.se',
url='http://haste.research.it.uu.se',
install_requires=[
'pymongo',
'python-swiftclient',
'keystoneauth1',
'future',
# TODO: add Pachyderm (when its fixed)
'numpy'
],
test_requires=[
'pytest'
]
)