ba39ade716
This commit only removes code that is not required when swiftonfile will be used as Storage Policy in Swift. This commit does NOT: * include code changes to support SP * fix functional tests * update documentation related to SP This commit removes the following: * Gen builders script and its man page. * Authentication guide, user guide and other docs. * Swiftkerbauth code, unit tests, func tests and doc. * gswauth code, unit tests, func tests and doc. * Object expirer code modifications, unit tests and doc. * Conf files of account, container, proxy. * Account, container and proxy server code - server.py of each. * Account, container and proxy unit and functional tests. * DiskDir class and corresponding unit tests. * Our overridden ring.py (enforces account = volume = device) and tests. * Functional tests for authentication filters. * modules/swift and test/deploy directories. * Proxy base controllers unit tests. NOTE: We may have to reintroduce some of the above functional and unit tests after SP related code changes - during fixing functional tests. This commit modifies: * setup.py to reflect the above code removals. * constraints.py to remove references to ring.py * object server.py to remove object-expirer changes * tox.ini to remove ksfunctest and swfunctest Signed-off-by: Prashanth Pai <ppai@redhat.com>
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
# Copyright (c) 2013 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from setuptools import setup, find_packages
|
|
from gluster.swift import _pkginfo
|
|
|
|
|
|
setup(
|
|
name=_pkginfo.name,
|
|
version=_pkginfo.full_version,
|
|
description='Gluster For Swift',
|
|
license='Apache License (2.0)',
|
|
author='Red Hat, Inc.',
|
|
author_email='gluster-users@gluster.org',
|
|
url='http://launchpad.net/gluster-swift',
|
|
packages=find_packages(exclude=['test', 'bin']),
|
|
test_suite='nose.collector',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable'
|
|
'Environment :: OpenStack'
|
|
'Intended Audience :: Information Technology'
|
|
'Intended Audience :: System Administrators'
|
|
'License :: OSI Approved :: Apache Software License'
|
|
'Operating System :: POSIX :: Linux'
|
|
'Programming Language :: Python'
|
|
'Programming Language :: Python :: 2'
|
|
'Programming Language :: Python :: 2.6'
|
|
'Programming Language :: Python :: 2.7'
|
|
],
|
|
install_requires=[],
|
|
scripts=[
|
|
'bin/gluster-swift-print-metadata',
|
|
],
|
|
entry_points={
|
|
'paste.app_factory': [
|
|
'object=gluster.swift.obj.server:app_factory',
|
|
],
|
|
},
|
|
)
|