Skip to content

Commit b370bd8

Browse files
committed
Fixed packaging issue
1 parent 175f5a6 commit b370bd8

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

HISTORY.rst

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
History
44
-------
55

6+
0.3.1 (2013-10-15)
7+
++++++++++++++++++
8+
9+
* Fixed packaging issue with extras_require.
10+
611
0.3.0 (2013-10-15)
712
++++++++++++++++++
813

README.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ To install the `geoip2` module, type:
2525

2626
.. code-block:: bash
2727
28-
$ pip install geoip2
28+
$ pip install geoip2[DB]
29+
30+
If you do not need the database reader, you may omit `[DB]`.
2931

3032
If you are not able to use pip, you may also use easy_install from the
3133
source directory:

geoip2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pylint:disable=C0111
22

33
__title__ = 'geoip2'
4-
__version__ = '0.3.0'
4+
__version__ = '0.3.1'
55
__author__ = 'Gregory Oschwald'
66
__license__ = 'LGPLv2+'
77
__copyright__ = 'Copyright 2013 Maxmind, Inc.'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
package_dir={'geoip2': 'geoip2'},
3737
include_package_data=True,
3838
install_requires=requirements,
39-
extras_require={'Database Reader': ['maxminddb']},
39+
extras_require={'DB': ['maxminddb']},
4040
tests_require=['httpretty>=0.6.1'],
4141
test_suite="tests",
4242
license=open('LICENSE').read(),

0 commit comments

Comments
 (0)