-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
41 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
Change log | ||
=========== | ||
================================================================================ | ||
|
||
0.5.0-rc1 - 14.03.2019 | ||
-------------------------------------------------------------------------------- | ||
|
||
first release | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
#. read data out from xlsb format but to pyexcel-io's standard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: pyexcel-xlsxr | ||
organisation: pyexcel | ||
releases: | ||
- changes: | ||
- action: first release | ||
details: | ||
- read data out from xlsb format but to pyexcel-io's standard | ||
date: 14.03.2019 | ||
version: 0.5.0-rc1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = "0.0.1" | ||
__author__ = "C.W." | ||
__version__ = '0.5.0-rc1' | ||
__author__ = 'C.W.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import codecs | ||
import locale | ||
# Template by pypi-mobans | ||
import os | ||
import platform | ||
import sys | ||
import codecs | ||
import locale | ||
import platform | ||
from shutil import rmtree | ||
|
||
from setuptools import Command, find_packages, setup | ||
from setuptools import Command, setup, find_packages | ||
|
||
PY2 = sys.version_info[0] == 2 | ||
PY26 = PY2 and sys.version_info[1] < 7 | ||
|
@@ -29,14 +29,14 @@ | |
|
||
NAME = 'pyexcel-xlsbr' | ||
AUTHOR = 'C.W.' | ||
VERSION = '0.0.1' | ||
VERSION = '0.5.0-rc1' | ||
EMAIL = '[email protected]' | ||
LICENSE = 'New BSD' | ||
DESCRIPTION = ( | ||
'read Microsoft Excel tm xlsb file' | ||
) | ||
URL = 'https://github.com/pyexcel/pyexcel-xlsbr' | ||
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL | ||
DOWNLOAD_URL = '%s/archive/0.5.0-rc1.tar.gz' % URL | ||
FILES = ['README.rst', 'CHANGELOG.rst'] | ||
KEYWORDS = [ | ||
'python', | ||
|
@@ -67,8 +67,8 @@ | |
# You do not need to read beyond this line | ||
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format( | ||
sys.executable) | ||
GS_COMMAND = ('gs pyexcel-xlsbr v0.0.1 ' + | ||
"Find 0.0.1 in changelog for more details") | ||
GS_COMMAND = ('gs pyexcel-xlsbr v0.5.0-rc1 ' + | ||
"Find 0.5.0-rc1 in changelog for more details") | ||
NO_GS_MESSAGE = ('Automatic github release is disabled. ' + | ||
'Please install gease to enable it.') | ||
UPLOAD_FAILED_MSG = ( | ||
|