blob: 6ebaa5ced74fbe9c7c0293da1f5dd611866a387b [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.
# libcloud.org 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):
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)
)
setup(
name='apache-libcloud',
version='0.2.1',
description='A unified interface into many cloud server providers',
author='Apache Software Foundation',
author_email='libcloud@incubator.apache.org',
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'
],
)