1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#! /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',
],
)
|