forked from codecov/codecov-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 935 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 935 Bytes
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
#!/usr/bin/env python
from setuptools import setup
version = '0.3.0'
classifiers = ["Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing"]
setup(name='codecov',
version=version,
description="Hosted coverage reports for Github and Bitbucket",
long_description=None,
classifiers=classifiers,
keywords='coverage codecov code',
author='@codecov',
url='http://github.com/codecov/codecov-python',
license='http://www.apache.org/licenses/LICENSE-2.0',
packages=['codecov'],
include_package_data=True,
zip_safe=True,
install_requires=["requests>=2.0.0", "coverage"],
entry_points={'console_scripts': ['codecov=codecov:cli']})