Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,25 @@

### Install

`pip install -e git+https://github.com/dvska/gdata-python3#egg=gdata`
or
`sudo python setup.py install`
pip install -e git+https://github.com/dvska/gdata-python3#egg=gdata

OR

sudo python setup.py install


### Running Tests and Samples

python ./tests/run_data_tests.py
python ./tests/run_data_tests.py


### Install from PyPi
pip install gdata-python3

OR

pip3 install gdata-python3



--------------------------------------------------------
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@


import sys
from distutils.core import setup

from setuptools import setup

required = ['tlslite-ng', 'lxml']

if sys.version_info[:3] < (2, 9, 0):
raise NotImplemented('Python 3.5+ required, bye-bye')

setup(name='gdata',
setup(name='gdata-python3',
version='3.0.1',
description='Python client library for Google data APIs',
long_description="""\
Expand Down