blob: 4f348fa217d50bad04ba8bddcc1011e53be8b3ac [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
import os
import sys
from distutils.core import setup
from distutils.core import Command
from unittest import TextTestRunner, TestLoader
from glob import glob
from os.path import splitext, basename, join as pjoin
HTML_VIEWSOURCE_BASE = 'https://svn.apache.org/viewvc/incubator/libcloud/trunk'
PROJECT_BASE_DIR = 'http://incubator.apache.org/libcloud/'
class TestCommand(Command):
user_options = []
def initialize_options(self):
THIS_DIR = os.path.abspath(os.path.split(__file__)[0])
sys.path.insert(0, THIS_DIR)
sys.path.insert(0, pjoin(THIS_DIR, 'test'))
self._dir = os.getcwd()
def finalize_options(self):
pass
def run(self):
secrets = pjoin(self._dir, 'test', 'secrets.py')
if not os.path.isfile(secrets):
print "Missing %s" % (secrets)
print "Maybe you forgot to copy it from -dist:"
print " cp test/secrets.py-dist test/secrets.py"
sys.exit(1)
pre_python26 = (sys.version_info[0] == 2
and sys.version_info[1] < 6)
if pre_python26:
missing = []
# test for dependencies
try:
import simplejson
except ImportError:
missing.append("simplejson")
try:
import ssl
except ImportError:
missing.append("ssl")
if missing:
print "Missing dependencies: %s" % ", ".join(missing)
sys.exit(1)
testfiles = []
for t in glob(pjoin(self._dir, 'test', 'test_*.py')):
testfiles.append('.'.join(
['test', splitext(basename(t))[0]])
)
tests = TestLoader().loadTestsFromNames(testfiles)
t = TextTestRunner(verbosity = 1)
res = t.run(tests)
sys.exit(not res.wasSuccessful())
class ApiDocsCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system(
'pydoctor'
' --add-package=libcloud'
' --project-name=libcloud'
' --make-html'
' --html-viewsource-base="%s"'
' --project-base-dir=`pwd`'
' --project-url="%s"'
% (HTML_VIEWSOURCE_BASE, PROJECT_BASE_DIR)
)
# pre-2.6 will need the ssl PyPI package
pre_python26 = (sys.version_info[0] == 2 and sys.version_info[1] < 6)
setup(
name='apache-libcloud',
version='0.4.1',
description='A unified interface into many cloud server providers',
author='Apache Software Foundation',
author_email='libcloud@incubator.apache.org',
requires=([], ['ssl', 'simplejson'],)[pre_python26],
packages=[
'libcloud',
'libcloud.drivers'
],
package_dir={
'libcloud': 'libcloud',
'libcloud.drivers': 'libcloud/drivers'
},
license='Apache License (2.0)',
url='http://incubator.apache.org/libcloud/',
cmdclass={
'test': TestCommand,
'apidocs': ApiDocsCommand
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)