Skip to content

Commit

Permalink
Fixed packaging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Oct 15, 2013
1 parent 175f5a6 commit b370bd8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

0.3.1 (2013-10-15)
++++++++++++++++++

* Fixed packaging issue with extras_require.

0.3.0 (2013-10-15)
++++++++++++++++++

Expand Down
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ To install the `geoip2` module, type:

.. code-block:: bash
$ pip install geoip2
$ pip install geoip2[DB]
If you do not need the database reader, you may omit `[DB]`.

If you are not able to use pip, you may also use easy_install from the
source directory:
Expand Down
2 changes: 1 addition & 1 deletion geoip2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pylint:disable=C0111

__title__ = 'geoip2'
__version__ = '0.3.0'
__version__ = '0.3.1'
__author__ = 'Gregory Oschwald'
__license__ = 'LGPLv2+'
__copyright__ = 'Copyright 2013 Maxmind, Inc.'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
package_dir={'geoip2': 'geoip2'},
include_package_data=True,
install_requires=requirements,
extras_require={'Database Reader': ['maxminddb']},
extras_require={'DB': ['maxminddb']},
tests_require=['httpretty>=0.6.1'],
test_suite="tests",
license=open('LICENSE').read(),
Expand Down

0 comments on commit b370bd8

Please sign in to comment.