from setuptools import find_packages, setup


TEST_REQUIREMENTS = ["nose", "coverage", "mox"]

setup(
    name="abl.webconnector",
    version="0.2",
    author="Diez B. Roggisch et al.",
    author_email="diez.roggisch@ableton.com",
    description="The Ableton Web Connector source and tests.",
    packages=find_packages(),
    namespace_packages=["abl"],
    install_requires=["abl.util >= 0.1.8", "abl.vpath >= 0.8.2"],
    extras_require=dict(testing=TEST_REQUIREMENTS),
    tests_require=TEST_REQUIREMENTS,
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "License :: Other/Proprietary License",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Intended Audience :: Developers",
        "Topic :: Utilities",
    ],
    zip_safe=False,
    entry_points={
        "console_scripts": [
            "delta_creator = abl.installer.delta_creator:delta_creator",
            "delta_installer = abl.installer.main:main",
        ]
    },
)
