forked from TheKevJames/coveralls-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (54 loc) · 1.87 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
import os
from setuptools import setup
VERSION_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'coveralls', 'version.py')
with open('README.rst') as f:
DESCRIPTION = f.read()
with open(VERSION_FILE) as f:
VERSION = f.read().split()[2][1:-1]
setup(
name='coveralls',
version=VERSION,
packages=['coveralls'],
url='http://github.com/TheKevJames/coveralls-python',
project_urls={
'Changelog': ('https://github.com/TheKevJames/coveralls-python/'
'blob/master/CHANGELOG.md'),
'Docs': 'https://coveralls-python.rtfd.io/',
},
license='MIT',
author='TheKevJames',
description='Show coverage stats online via coveralls.io',
long_description=DESCRIPTION,
entry_points={
'console_scripts': [
'coveralls = coveralls.cli:main',
],
},
python_requires='>= 3.5',
install_requires=[
'coverage>=4.1,<7.0,!=6.0.*,!=6.1,!=6.1.1',
'docopt>=0.6.1',
'requests>=1.0.0',
],
tests_require=['mock', 'responses', 'pytest'],
extras_require={
'yaml': ['PyYAML>=3.10'],
},
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 :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)