-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.2 KB
/
setup.py
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
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name='datastore.cloudfiles',
version='1.0.0',
packages=[p for p in find_packages() if p.startswith('datastore')],
namespace_packages=['datastore'],
install_requires=['datastore>=0.3', 'pyrax>=1.9'],
test_suite='datastore.cloudfiles.test',
keywords=[
'datastore',
'rackspace',
'cloud files',
'cloudfiles'
'pyrax'
'storage',
],
classifiers=[
'Environment :: OpenStack',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
description='Rackspace Cloud Files implementation of Datastore.',
author='Ben Jeffrey',
author_email='[email protected]',
license='MPL 2.0',
url='https://github.com/boilerroomtv/datastore.cloudfiles',
)