forked from myint/cram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·70 lines (58 loc) · 2.07 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
"""Installs cram."""
import os
import sys
import setuptools
class test(setuptools.Command):
"""Runs doctests and Cram tests."""
description = 'run test suite'
user_options = [('coverage', None, 'run tests using coverage.py')]
def initialize_options(self):
self.coverage = 0
def finalize_options(self):
pass
def run(self):
import doctest
import cram
failures, tests = doctest.testmod(cram)
sys.stdout.write('doctests: %s/%s passed\n' %
(tests - failures, tests))
os.environ['PYTHON'] = sys.executable
if self.coverage:
# Note that when coverage.py is run, it uses the version
# of Python it was installed with, NOT the version
# setup.py was run with.
os.environ['COVERAGE'] = '1'
os.environ['COVERAGE_FILE'] = os.path.abspath('./.coverage')
cram.main(['-v', 'tests'])
def long_description():
"""Get the long description from the README."""
with open(os.path.join(sys.path[0], 'README.rst')) as readme:
return readme.read()
setuptools.setup(
author='Brodie Rao',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Unix Shell',
'Topic :: Software Development :: Testing',
],
cmdclass={'test': test},
description='A simple testing framework for command line applications',
keywords='automatic functional test framework',
license='GNU GPL',
long_description=long_description(),
name='cram',
py_modules=['cram'],
entry_points={
'console_scripts': ['cram = cram:run_main']},
url='http://bitheap.org/cram/',
version='0.5',
)