forked from Gu1/python-cloudfiles-hubic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·38 lines (34 loc) · 1.29 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
37
38
#!/usr/bin/python
import warnings
from setuptools import setup, find_packages
from cloudfiles.consts import __version__
warnings.simplefilter('default')
warnings.warn("python-cloudfiles has been deprecated as of August 1, 2013. "
"Please see https://github.com/openstack/python-swiftclient.",
DeprecationWarning)
setup(name='python-cloudfiles',
version=__version__,
description='CloudFiles client library for Python',
classifiers=[
'Development Status :: 7 - Inactive',
'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='Rackspace',
author_email='[email protected]',
url='https://github.com/rackspace/python-cloudfiles',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[],
setup_requires=[],
test_suite='nose.collector',
namespace_packages=[],
)