🤝 sync with latest pyexcel-commons

This commit is contained in:
chfw 2018-03-15 09:45:08 +00:00
parent d8fa9296ea
commit b6ee3d0153
5 changed files with 19 additions and 13 deletions

1
.gitignore vendored
View File

@ -96,4 +96,3 @@ ENV/
# moban hashes
.moban.hashes
.DS_store

View File

@ -5,7 +5,7 @@ pyexcel-xls - Let you focus on data, instead of xls format
.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png
:target: https://www.patreon.com/pyexcel
.. image:: https://api.travis-ci.org/pyexcel/pyexcel-xls.svg?branch=master
.. image:: https://travis-ci.org/pyexcel/pyexcel-xls.svg?branch=master
:target: http://travis-ci.org/pyexcel/pyexcel-xls
.. image:: https://codecov.io/gh/pyexcel/pyexcel-xls/branch/master/graph/badge.svg
@ -57,6 +57,8 @@ If you are an individual, you are welcome to support me too on patreon and for h
you feel like. As a patreon, you will receive
`early access to pyexcel related contents <https://www.patreon.com/pyexcel/posts>`_.
And your issues will get prioritized if you would like to become my patreon as `pyexcel pro user`.
With your financial support, I will be able to invest
a little bit more time in coding, documentation and writing interesting posts.

View File

@ -18,9 +18,9 @@ source_suffix = '.rst'
master_doc = 'index'
project = u'pyexcel-xls'
copyright = u'2015-2017 Onni Software Ltd.'
copyright = u'2015-2018 Onni Software Ltd.'
version = '0.5.5'
release = '0.5.5'
release = '0.5.6'
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = 'default'

View File

@ -1,8 +1,8 @@
overrides: "pyexcel.yaml"
name: "pyexcel-xls"
nick_name: xls
version: 0.5.5
current_version: 0.5.5
version: 0.5.6
current_version: 0.5.6
release: 0.5.5
file_type: xls
dependencies:

View File

@ -9,17 +9,16 @@ PY26 = PY2 and sys.version_info[1] < 7
NAME = 'pyexcel-xls'
AUTHOR = 'C.W.'
VERSION = '0.5.5'
VERSION = '0.5.6'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
'A wrapper library to read, manipulate and write data in xls format. It' +
' reads xlsx and xlsm format' +
''
'reads xlsx and xlsm format'
)
URL = 'https://github.com/pyexcel/pyexcel-xls'
DOWNLOAD_URL = '%s/archive/0.5.5.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'xls',
'xlsx',
@ -47,6 +46,7 @@ INSTALL_REQUIRES = [
'xlrd',
'xlwt',
]
SETUP_COMMANDS = {}
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
@ -85,6 +85,8 @@ class PublishCommand(Command):
try:
self.status('Removing previous builds...')
rmtree(os.path.join(HERE, 'dist'))
rmtree(os.path.join(HERE, 'build'))
rmtree(os.path.join(HERE, 'pyexcel_xls.egg-info'))
except OSError:
pass
@ -101,6 +103,11 @@ class PublishCommand(Command):
sys.exit()
SETUP_COMMANDS.update({
'publish': PublishCommand
})
def has_gease():
"""
test if github release command is installed
@ -174,7 +181,5 @@ if __name__ == '__main__':
include_package_data=True,
zip_safe=False,
classifiers=CLASSIFIERS,
cmdclass={
'publish': PublishCommand,
}
cmdclass=SETUP_COMMANDS
)