forked from TheKevJames/coveralls-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (49 loc) · 1.75 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
import sys
from setuptools.command.test import test as TestCommand
from setuptools import setup
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
name='coveralls',
version='1.0',
packages=['coveralls'],
url='http://github.com/coagulant/coveralls-python',
license='MIT',
author='Ilya Baryshev',
author_email='[email protected]',
description='Show coverage stats online via coveralls.io',
long_description=open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read(),
entry_points={
'console_scripts': [
'coveralls = coveralls.cli:main',
],
},
install_requires=['docopt>=0.6.1', 'coverage>=3.6', 'requests>=1.0.0'],
tests_require=['mock', 'pytest>=2.7.3,<2.8', 'sh>=1.08'],
extras_require={
'yaml': ['PyYAML>=3.10']
},
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Testing',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
],
)