forked from dbrgn/coverage-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 981 Bytes
/
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
from setuptools import setup
readme = open('README.rst').read()
setup(name='coverage-badge',
version='1.1.0',
description='Generate coverage badges for Coverage.py.',
author='Danilo Bargen',
author_email='[email protected]',
url='https://github.com/dbrgn/coverage-badge',
install_requires=['coverage'],
packages=['coverage_badge'],
zip_safe=True,
include_package_data=True,
license='MIT',
keywords='coverage badge shield',
long_description=readme,
entry_points={
'console_scripts': [
'coverage-badge = coverage_badge.__main__:main',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
],
)