Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Lewis committed May 22, 2015
1 parent 7f01a64 commit 0480596
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 7 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
History
-------

0.2.0 (2015-05-21)
------------------

* Added get_all() method to resources that use paging to return an iterator over all of the requested resources
* Added the ability to pass an iterable as an argument and have it automatically expand into a comma-separated list
* Added the ability to authenticate use an API key
* Added a new resource for Commerce Transactions

0.1.0 (2015-04-12)
------------------

Expand Down
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ A Python Wrapper for the Guild Wars 2 API
* Free software: BSD license
* Documentation: https://guildwars2api.readthedocs.org.

Installation
------------

This package is hosted on PyPI so it can be install using pip or easy_install

$ easy_install guildwars2api
$ pip install guildwars2api

Features
--------

Expand Down
12 changes: 11 additions & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ At the command line::

$ easy_install guildwars2api

Or

$ pip install guildwars2api

Or, if you have virtualenvwrapper installed::

$ mkvirtualenv guildwars2api
$ pip install guildwars2api
$ pip install guildwars2api

Or, if you want to install from source:

$ git clone https://github.com/menglewis/guildwars2api.git
$ cd guildwars2api
$ python setup.py install
2 changes: 1 addition & 1 deletion guildwars2api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.1.0'
__version__ = '0.2.0'
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@
'requests'
]

test_requirements = [
# TODO: put package test requirements here
]
test_requirements = []

setup(
name='guildwars2api',
version='0.1.0',
version='0.2.0',
description='A Python API Wrapper for the Guild Wars 2 API',
long_description=readme + '\n\n' + history,
author='David Lewis',
Expand All @@ -44,7 +42,7 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
Expand Down

0 comments on commit 0480596

Please sign in to comment.