forked from softlayer/softlayer-object-storage-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (29 loc) · 1 KB
/
setup.py
File metadata and controls
executable file
·30 lines (29 loc) · 1 KB
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
#!/usr/bin/python
from setuptools import setup, find_packages
from object_storage import __version__
name = 'softlayer-object-storage'
version = __version__
setup(
name=name,
version=version,
description='Softlayer Object Storage client bindings for python.',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
],
author='SoftLayer Technologies, Inc.',
url='https://github.com/softlayer/softlayer-object-storage-python',
license='MIT',
packages=find_packages(exclude=['test', 'ez_setup', 'examples']),
test_suite='tests',
install_requires=['httplib2'],
setup_requires=['mock'],
namespace_packages=[]
)