#! /usr/bin/env python

from distutils.core import setup, Extension

# When making changes to the following list, remember to keep
# CMakeLists.txt in sync.
scripts = [
    "btest",
    "btest-ask-update",
    "btest-bg-run",
    "btest-bg-run-helper",
    "btest-bg-wait",
    "btest-diff",
    "btest-setsid",
    "btest-progress",
    "sphinx/btest-diff-rst",
    "sphinx/btest-rst-cmd",
    "sphinx/btest-rst-include",
    "sphinx/btest-rst-pipe",
]

py_modules = ["btest-sphinx"]

setup(
    name='btest',
    version="0.72",  # Filled in automatically.
    description='A powerful system testing framework',
    long_description='See https://github.com/zeek/btest',
    author='Robin Sommer',
    author_email='robin@icir.org',
    url='https://github.com/zeek/btest',
    scripts=scripts,
    package_dir={"": "sphinx"},
    py_modules=py_modules,
    license='3-clause BSD License',
    keywords='system tests testing framework baselines',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Environment :: Console',
        'License :: OSI Approved :: BSD License',
        'Operating System :: POSIX :: Linux',
        'Operating System :: MacOS :: MacOS X',
        'Programming Language :: Python :: 3',
        'Topic :: Utilities',
    ],
)
