Example #1
0
forbid_publish()

setup(
    name='apache-libcloud',
    version=read_version_string(),
    description='A standard Python library that abstracts away differences' +
                ' among multiple cloud provider APIs. For more information' +
                ' and documentation, please see http://libcloud.apache.org',
    author='Apache Software Foundation',
    author_email='*****@*****.**',
    requires=([], ['ssl', 'simplejson'],)[pre_python26],
    packages=get_packages('libcloud'),
    package_dir={
        'libcloud': 'libcloud',
    },
    package_data={'libcloud': get_data_files('libcloud', parent='libcloud')},
    license='Apache License (2.0)',
    url='http://libcloud.apache.org/',
    cmdclass={
        'test': TestCommand,
        'apidocs': ApiDocsCommand,
        'coverage': CoverageCommand
    },
    zip_safe=False,
    classifiers=[
        'Development Status :: 4 - Beta',
        'Environment :: Console',
        'Intended Audience :: System Administrators',
        'License :: OSI Approved :: Apache Software License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
Example #2
0
install_requires = ["backports.ssl_match_hostname"]
if pre_python26:
    install_requires.extend(["ssl", "simplejson"])

setup(
    name="apache-libcloud",
    version=read_version_string(),
    description="A standard Python library that abstracts away differences"
    + " among multiple cloud provider APIs. For more information"
    + " and documentation, please see http://libcloud.apache.org",
    author="Apache Software Foundation",
    author_email="*****@*****.**",
    install_requires=install_requires,
    packages=get_packages("libcloud"),
    package_dir={"libcloud": "libcloud"},
    package_data={"libcloud": get_data_files("libcloud", parent="libcloud")},
    license="Apache License (2.0)",
    url="http://libcloud.apache.org/",
    cmdclass={"test": TestCommand, "apidocs": ApiDocsCommand, "coverage": CoverageCommand},
    zip_safe=False,
    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",
        "Programming Language :: Python :: 2.5",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",