irctest/setup.py

51 lines
1.5 KiB
Python
Raw Normal View History

2015-12-19 20:15:52 +00:00
#!/usr/bin/env python3
2015-12-19 00:11:57 +00:00
import os
import sys
from distutils.core import setup
2015-12-19 16:52:38 +00:00
if sys.version_info < (3, 4, 0):
2015-12-19 00:11:57 +00:00
sys.stderr.write("This script requires Python 3.2 or newer.")
sys.stderr.write(os.linesep)
sys.exit(-1)
setup(
name='irctest',
version='0.1',
author='Valentin Lorentz',
url='https://github.com/ProgVal/irctest/',
author_email='progval+irctest@progval.net',
description='A script to test interoperability of IRC software.',
platforms=['linux', 'linux2'],
long_description="""This script aims at testing interoperability of
software using the IRC protocol, by running them against test suites
2015-12-19 18:11:17 +00:00
and making different software communicate with each other.""",
2015-12-19 00:11:57 +00:00
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2015-12-19 18:03:04 +00:00
'Programming Language :: Python :: 3 :: Only',
2015-12-19 00:11:57 +00:00
'Topic :: Communications :: Chat :: Internet Relay Chat',
'Topic :: Software Development :: Testing',
],
# Installation data
packages=[
'irctest',
],
package_dir={
'irctest': 'irctest',
},
)
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: