~gandelman-a/charms/precise/swift-proxy/utils_sync

« back to all changes in this revision

Viewing changes to hooks/fujita-swift3-f216f1b/setup.py

  • Committer: Ryan Finnie
  • Date: 2012-10-04 10:09:21 UTC
  • Revision ID: ryan.finnie@canonical.com-20121004100921-njfligej5q65udo1
Provide swift-plugin-s3 currently in quantal until it's available in precise cloud-archive

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
# Copyright 2012 OpenStack, LLC.
3
 
#
4
 
# Licensed under the Apache License, Version 2.0 (the "License");
5
 
# you may not use this file except in compliance with the License.
6
 
# You may obtain a copy of the License at
7
 
#
8
 
#    http://www.apache.org/licenses/LICENSE-2.0
9
 
#
10
 
# Unless required by applicable law or agreed to in writing, software
11
 
# distributed under the License is distributed on an "AS IS" BASIS,
12
 
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 
# See the License for the specific language governing permissions and
14
 
# limitations under the License.
15
 
 
16
 
from setuptools import setup
17
 
 
18
 
import swift3
19
 
 
20
 
 
21
 
setup(name='swift3',
22
 
      version=swift3.version,
23
 
      description='Swift AmazonS3 API emulation Middleware',
24
 
      author='OpenStack, LLC.',
25
 
      author_email='openstack@lists.launchpad.net',
26
 
      url='https://github.com/fujita/swift3',
27
 
      packages=['swift3'],
28
 
      requires=['swift(>=1.4)'],
29
 
      entry_points={'paste.filter_factory':
30
 
                        ['swift3=swift3.middleware:filter_factory']})