Skip to content

Commit f9cf3cd

Browse files
committed
update coverage command
1 parent 707b0d1 commit f9cf3cd

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ install:
1616
script:
1717
nosetests --rednose --with-cov --with-doctest --doctest-extension=.rst
1818
after_success:
19-
codecov
19+
coveralls

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
pyexcel-tabulate
2+
pyexcel-text
33
~~~~~~~~~~~~~~
44
55
textual plugin for pyexcel
@@ -20,14 +20,16 @@
2020
author="C. W.",
2121
version='0.0.1',
2222
author_email="wangc_2011@hotmail.com",
23+
url="https://github.com/chfw/pyexcel-text",
2324
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
2425
include_package_data=True,
2526
dependencies=[
2627
'pyexcel>=0.0.8',
2728
'tabulate'
2829
],
2930
description="It is a plugin to pyexcel and provides the capbility to present and write data in text fromats",
30-
long_description=__doc__,
31+
long_description=README_txt,
32+
tests_require=['nose'],
3133
zip_safe=False,
3234
classifiers=[
3335
'Development Status :: 3 - Alpha',
@@ -39,5 +41,8 @@
3941
'Intended Audience :: Developers',
4042
'Programming Language :: Python :: 2.6',
4143
'Programming Language :: Python :: 2.7'
44+
'Programming Language :: Python :: 3.3'
45+
'Programming Language :: Python :: 3.4'
46+
'Programming Language :: Python :: Implementation :: PyPy'
4247
]
4348
)

0 commit comments

Comments
 (0)