-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create master27 branch for publishing the Python2.7 version... one-da…
…y I'll update master branch to be python3 compatible
- Loading branch information
Mark Brenig-Jones
committed
Oct 3, 2017
1 parent
110e10c
commit 290c16e
Showing
4 changed files
with
9 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ mysecrets.bat | |
htmlcov | ||
.tox | ||
SheetSync.egg-info | ||
sheetsync2.egg-info | ||
build | ||
dist | ||
MANIFEST | ||
|
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,19 +1,19 @@ | ||
SheetSync | ||
========= | ||
SheetSync2 | ||
========== | ||
|
||
|Build Status| | ||
|
||
A python library to create, update and delete rows of data in a google spreadsheet. `Click here to read the full documentation <http://sheetsync.readthedocs.org/>`_. | ||
A `python 2.7 <https://www.python.org/download/releases/2.7/>`_ library to create, update and delete rows of data in a google spreadsheet. `Click here to read the full documentation <http://sheetsync.readthedocs.org/>`_. | ||
|
||
Installation | ||
------------ | ||
Install from PyPi using `pip <http://www.pip-installer.org/en/latest/>`_:: | ||
|
||
pip install sheetsync | ||
pip install sheetsync2 | ||
|
||
Or you can clone the git repo and install from the code:: | ||
|
||
git clone [email protected]:mbrenig/sheetsync.git LocalSheetSync | ||
git clone -b master27 [email protected]:mbrenig/sheetsync.git LocalSheetSync | ||
pip install LocalSheetSync | ||
|
||
Note, you may need to run the commands above with ``sudo``. | ||
|
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 |
---|---|---|
|
@@ -10,9 +10,9 @@ | |
requirements = [line.strip() for line in fh.readlines()] | ||
|
||
setup( | ||
name='sheetsync', | ||
name='sheetsync2', | ||
version=__version__, | ||
description="Synchronize rows of data with a google spreadsheet", | ||
description="Synchronize rows of data with a google spreadsheet (Python2.7 version)", | ||
long_description=long_description, | ||
author='Mark Brenig-Jones', | ||
author_email='[email protected]', | ||
|
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 @@ | ||
# Single place version should be set. | ||
__version__ = '0.2.3' | ||
__version__ = '0.2.5' |