Skip to content

Commit

Permalink
Create master27 branch for publishing the Python2.7 version... one-da…
Browse files Browse the repository at this point in the history
…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
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ mysecrets.bat
htmlcov
.tox
SheetSync.egg-info
sheetsync2.egg-info
build
dist
MANIFEST
Expand Down
10 changes: 5 additions & 5 deletions README.rst
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``.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]',
Expand Down
2 changes: 1 addition & 1 deletion sheetsync/version.py
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'

0 comments on commit 290c16e

Please sign in to comment.