-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 1.16 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
import version
setup(name='OutputCheck',
version=version.get_git_version(),
description="A tool for checking the output of console programs inspired by LLVM's FileCheck",
author='Daniel Liew',
author_email='[email protected]',
url='https://github.com/stp/OutputCheck',
packages=['OutputCheck'],
classifiers=[ 'Environment :: Console',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent', # Not tested
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
'Topic :: Text Processing',
'Topic :: Utilities'
],
long_description=open('pypi_description.rst','r').read(),
entry_points = { 'console_scripts': ['OutputCheck=OutputCheck.Driver:scriptEntryPoint'] }
)