[Python-modules-commits] [python-geoip2] 03/05: Initial release (Closes: #844502).

Martin Kratochvíl krata-guest at moszumanska.debian.org
Mon Nov 21 11:12:39 UTC 2016


This is an automated email from the git hooks/post-receive script.

krata-guest pushed a commit to branch master
in repository python-geoip2.

commit 9f9f2db8f6a6dfd61ccd4bb05135205ef534d313
Author: Martin Kratochvíl <martin.kratochvil at firma.seznam.cz>
Date:   Tue Nov 15 13:46:45 2016 +0100

    Initial release (Closes: #844502).
---
 debian/.git-dpm                      |   3 +
 debian/changelog                     |   5 +
 debian/compat                        |   1 +
 debian/control                       |  44 ++++
 debian/copyright                     |  28 +++
 debian/python-geoip2.docs            |   1 +
 debian/python3-geoip2.docs           |   1 +
 debian/rules                         |  11 +
 debian/watch                         |   6 +
 geoip2.egg-info/PKG-INFO             | 412 -----------------------------------
 geoip2.egg-info/SOURCES.txt          |  82 -------
 geoip2.egg-info/dependency_links.txt |   1 -
 geoip2.egg-info/requires.txt         |   5 -
 geoip2.egg-info/top_level.txt        |   1 -
 14 files changed, 100 insertions(+), 501 deletions(-)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index f1ea898..e944a53 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@
 python-geoip2_2.4.0.orig.tar.gz
 033edab01434e9c665a60b803b8786de96bd9e88
 345708
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..47b47c2
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-geoip2 (2.4.0+dfsg1-1) unstable; urgency=medium
+
+  * Initial release (Closes: #844502).
+
+ -- Martin Kratochvil <martin.krata at gmail.com>  Mon, 14 Nov 2016 15:48:18 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2d0fc01
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,44 @@
+Source: python-geoip2
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Martin Kratochvíl <martin.krata at gmail.com>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 10),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python-requests,
+               python-requests-mock,
+               python-ipaddress,
+               python-maxminddb,
+               python3-all,
+               python3-setuptools,
+               python3-requests,
+               python3-requests-mock,
+               python3-maxminddb,
+Standards-Version: 3.9.8
+Homepage: https://github.com/maxmind/GeoIP2-python
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-geoip2.git/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-geoip2.git
+
+Package: python-geoip2
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends},
+Description: Python geoip2 API for web services and databases - Python 2.x
+ This package provides an API for the GeoIP2 web services and databases. The
+ API also works with MaxMind’s free GeoLite2 databases.
+ .
+ This package contains the Python 2.x module.
+
+Package: python3-geoip2
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends},
+Description: Python geoip2 API for web services and databases - Python 3.x
+ This package provides an API for the GeoIP2 web services and databases. The
+ API also works with MaxMind’s free GeoLite2 databases.
+ .
+ This package contains the Python 3.x module.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..df2d7c4
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: geoip2
+Source: https://github.com/maxmind/GeoIP2-python
+Files-Excluded: docs/html
+
+Files: *
+Copyright: 2013-2016, MaxMind, Inc.
+License: Apache-2
+
+Files: debian/*
+Copyright: 2016 Martin Kratochvíl <martin.krata at gmail.com>
+License: Apache-2
+
+License: Apache-2
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+     http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian-based systems the full text of the Apache version 2.0 license
+ can be found in `/usr/share/common-licenses/Apache-2.0'.
diff --git a/debian/python-geoip2.docs b/debian/python-geoip2.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-geoip2.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-geoip2.docs b/debian/python3-geoip2.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-geoip2.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ea3fa46
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#! /usr/bin/make -f
+
+#export DH_VERBOSE = 1
+export PYBUILD_NAME = geoip2
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_installchangelogs:
+	dh_installchangelogs HISTORY.rst
+
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..18f62c0
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,6 @@
+version=3
+opts=\
+uversionmangle=s/(rc|a|b|c)/~$1/,\
+dversionmangle=s/\+dfsg\d*$//,\
+repacksuffix=+dfsg1 \
+https://pypi.debian.net/geoip2/geoip2-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
diff --git a/geoip2.egg-info/PKG-INFO b/geoip2.egg-info/PKG-INFO
deleted file mode 100644
index bb767a3..0000000
--- a/geoip2.egg-info/PKG-INFO
+++ /dev/null
@@ -1,412 +0,0 @@
-Metadata-Version: 1.1
-Name: geoip2
-Version: 2.4.0
-Summary: MaxMind GeoIP2 API
-Home-page: http://www.maxmind.com/
-Author: Gregory Oschwald
-Author-email: goschwald at maxmind.com
-License: Apache License, Version 2.0
-Description: =========================
-        MaxMind GeoIP2 Python API
-        =========================
-        
-        Description
-        -----------
-        
-        This package provides an API for the GeoIP2 `web services
-        <http://dev.maxmind.com/geoip/geoip2/web-services>`_ and `databases
-        <http://dev.maxmind.com/geoip/geoip2/downloadable>`_. The API also works with
-        MaxMind's free `GeoLite2 databases
-        <http://dev.maxmind.com/geoip/geoip2/geolite2/>`_.
-        
-        Installation
-        ------------
-        
-        To install the ``geoip2`` module, type:
-        
-        .. code-block:: bash
-        
-            $ pip install geoip2
-        
-        If you are not able to use pip, you may also use easy_install from the
-        source directory:
-        
-        .. code-block:: bash
-        
-            $ easy_install .
-        
-        Database Reader Extension
-        ^^^^^^^^^^^^^^^^^^^^^^^^^
-        
-        If you wish to use the C extension for the database reader, you must first
-        install the `libmaxminddb C API <https://github.com/maxmind/libmaxminddb>`_.
-        Please `see the instructions distributed with it
-        <https://github.com/maxmind/libmaxminddb/blob/master/README.md>`_.
-        
-        IP Geolocation Usage
-        --------------------
-        
-        IP geolocation is inherently imprecise. Locations are often near the center of
-        the population. Any location provided by a GeoIP2 database or web service
-        should not be used to identify a particular address or household.
-        
-        Usage
-        -----
-        
-        To use this API, you first create either a web service object with your
-        MaxMind ``user_id`` and ``license_key`` or a database reader object with the
-        path to your database file. After doing this, you may call the method
-        corresponding to request type (e.g., ``city`` or ``country``), passing it the
-        IP address you want to look up.
-        
-        If the request succeeds, the method call will return a model class for the
-        end point you called. This model in turn contains multiple record classes,
-        each of which represents part of the data returned by the web service.
-        
-        If the request fails, the client class throws an exception.
-        
-        Web Service Example
-        -------------------
-        
-        .. code-block:: pycon
-        
-            >>> import geoip2.webservice
-            >>>
-            >>> # This creates a Client object that can be reused across requests.
-            >>> # Replace "42" with your user ID and "license_key" with your license
-            >>> # key.
-            >>> client = geoip2.webservice.Client(42, 'license_key')
-            >>>
-            >>> # Replace "insights" with the method corresponding to the web service
-            >>> # that you are using, e.g., "country", "city".
-            >>> response = client.insights('128.101.101.101')
-            >>>
-            >>> response.country.iso_code
-            'US'
-            >>> response.country.name
-            'United States'
-            >>> response.country.names['zh-CN']
-            u'美国'
-            >>>
-            >>> response.subdivisions.most_specific.name
-            'Minnesota'
-            >>> response.subdivisions.most_specific.iso_code
-            'MN'
-            >>>
-            >>> response.city.name
-            'Minneapolis'
-            >>>
-            >>> response.postal.code
-            '55455'
-            >>>
-            >>> response.location.latitude
-            44.9733
-            >>> response.location.longitude
-            -93.2323
-        
-        Web Service Client Exceptions
-        -----------------------------
-        
-        For details on the possible errors returned by the web service itself, see
-        http://dev.maxmind.com/geoip/geoip2/web-services for the GeoIP2 Precision web
-        service docs.
-        
-        If the web service returns an explicit error document, this is thrown as a
-        ``AddressNotFoundError``, ``AuthenticationError``, ``InvalidRequestError``, or
-        ``OutOfQueriesError`` as appropriate. These all subclass ``GeoIP2Error``.
-        
-        If some other sort of error occurs, this is thrown as an ``HTTPError``. This
-        is thrown when some sort of unanticipated error occurs, such as the web
-        service returning a 500 or an invalid error document. If the web service
-        returns any status code besides 200, 4xx, or 5xx, this also becomes an
-        ``HTTPError``.
-        
-        Finally, if the web service returns a 200 but the body is invalid, the client
-        throws a ``GeoIP2Error``.
-        
-        Database Example
-        -------------------
-        
-        City Database
-        ^^^^^^^^^^^^^
-        
-        .. code-block:: pycon
-        
-            >>> import geoip2.database
-            >>>
-            >>> # This creates a Reader object. You should use the same object
-            >>> # across multiple requests as creation of it is expensive.
-            >>> reader = geoip2.database.Reader('/path/to/GeoLite2-City.mmdb')
-            >>>
-            >>> # Replace "city" with the method corresponding to the database
-            >>> # that you are using, e.g., "country".
-            >>> response = reader.city('128.101.101.101')
-            >>>
-            >>> response.country.iso_code
-            'US'
-            >>> response.country.name
-            'United States'
-            >>> response.country.names['zh-CN']
-            u'美国'
-            >>>
-            >>> response.subdivisions.most_specific.name
-            'Minnesota'
-            >>> response.subdivisions.most_specific.iso_code
-            'MN'
-            >>>
-            >>> response.city.name
-            'Minneapolis'
-            >>>
-            >>> response.postal.code
-            '55455'
-            >>>
-            >>> response.location.latitude
-            44.9733
-            >>> response.location.longitude
-            -93.2323
-            >>> reader.close()
-        
-        Anonymous IP Database
-        ^^^^^^^^^^^^^^^^^^^^^
-        
-        .. code-block:: pycon
-        
-            >>> import geoip2.database
-            >>>
-            >>> # This creates a Reader object. You should use the same object
-            >>> # across multiple requests as creation of it is expensive.
-            >>> reader = geoip2.database.Reader('/path/to/GeoIP2-Anonymous-IP.mmdb')
-            >>>
-            >>> response = reader.anonymous_ip('85.25.43.84')
-            >>>
-            >>> response.is_anonymous
-            True
-            >>> response.is_anonymous_vpn
-            False
-            >>> response.is_hosting_provider
-            False
-            >>> response.is_public_proxy
-            False
-            >>> response.is_tor_exit_node
-            True
-            >>> response.ip_address
-            '128.101.101.101'
-            >>> reader.close()
-        
-        Connection-Type Database
-        ^^^^^^^^^^^^^^^^^^^^^^^^
-        
-        .. code-block:: pycon
-        
-            >>> import geoip2.database
-            >>>
-            >>> # This creates a Reader object. You should use the same object
-            >>> # across multiple requests as creation of it is expensive.
-            >>> reader = geoip2.database.Reader('/path/to/GeoIP2-Connection-Type.mmdb')
-            >>>
-            >>> response = reader.connection_type('128.101.101.101')
-            >>>
-            >>> response.connection_type
-            'Corporate'
-            >>> response.ip_address
-            '128.101.101.101'
-            >>> reader.close()
-        
-        
-        Domain Database
-        ^^^^^^^^^^^^^^^
-        
-        .. code-block:: pycon
-        
-            >>> import geoip2.database
-            >>>
-            >>> # This creates a Reader object. You should use the same object
-            >>> # across multiple requests as creation of it is expensive.
-            >>> reader = geoip2.database.Reader('/path/to/GeoIP2-Domain.mmdb')
-            >>>
-            >>> response = reader.domain('128.101.101.101')
-            >>>
-            >>> response.domain
-            'umn.edu'
-            >>> response.ip_address
-            '128.101.101.101'
-            >>> reader.close()
-        
-        Enterprise Database
-        ^^^^^^^^^^^^^^^^^^^
-        
-        .. code-block:: pycon
-        
-            >>> import geoip2.database
-            >>>
-            >>> # This creates a Reader object. You should use the same object
-            >>> # across multiple requests as creation of it is expensive.
-            >>> with geoip2.database.Reader('/path/to/GeoIP2-Enterprise.mmdb') as reader:
-            >>>
-            >>>     # Use the .enterprise method to do a lookup in the Enterprise database
-            >>>     response = reader.enterprise('128.101.101.101')
-            >>>
-            >>>     response.country.confidence
-            99
-            >>>     response.country.iso_code
-            'US'
-            >>>     response.country.name
-            'United States'
-            >>>     response.country.names['zh-CN']
-            u'美国'
-            >>>
-            >>>     response.subdivisions.most_specific.name
-            'Minnesota'
-            >>>     response.subdivisions.most_specific.iso_code
-            'MN'
-            >>>     response.subdivisions.most_specific.confidence
-            77
-            >>>
-            >>>     response.city.name
-            'Minneapolis'
-            >>>     response.country.confidence
-            11
-            >>>
-            >>>     response.postal.code
-            '55455'
-            >>>
-            >>>     response.location.accuracy_radius
-            50
-            >>>     response.location.latitude
-            44.9733
-            >>>     response.location.longitude
-            -93.2323
-        
-        ISP Database
-        ^^^^^^^^^^^^
-        
-        .. code-block:: pycon
-        
-            >>> import geoip2.database
-            >>>
-            >>> # This creates a Reader object. You should use the same object
-            >>> # across multiple requests as creation of it is expensive.
-            >>> reader = geoip2.database.Reader('/path/to/GeoIP2-ISP.mmdb')
-            >>>
-            >>> response = reader.isp('1.128.0.0')
-            >>>
-            >>> response.autonomous_system_number
-            1221
-            >>> response.autonomous_system_organization
-            'Telstra Pty Ltd'
-            >>> response.isp
-            'Telstra Internet'
-            >>> response.organization
-            'Telstra Internet'
-            >>> response.ip_address
-            '128.101.101.101'
-            >>> reader.close()
-        
-        Database Reader Exceptions
-        --------------------------
-        
-        If the database file does not exist or is not readable, a ``ValueError`` will
-        be thrown. If the file is invalid or there is a bug in the reader, a
-        ``maxminddb.InvalidDatabaseError`` will be thrown with a description of the
-        problem. If an IP address is not in the database, a ``AddressNotFoundError``
-        exception will be thrown.
-        
-        Values to use for Database or Dictionary Keys
-        ---------------------------------------------
-        
-        **We strongly discourage you from using a value from any ``names`` property as
-        a key in a database or dictionaries.**
-        
-        These names may change between releases. Instead we recommend using one of the
-        following:
-        
-        * ``geoip2.records.City`` - ``city.geoname_id``
-        * ``geoip2.records.Continent`` - ``continent.code`` or ``continent.geoname_id``
-        * ``geoip2.records.Country`` and ``geoip2.records.RepresentedCountry`` - ``country.iso_code`` or ``country.geoname_id``
-        * ``geoip2.records.subdivision`` - ``subdivision.iso_code`` or ``subdivision.geoname_id``
-        
-        What data is returned?
-        ----------------------
-        
-        While many of the models contain the same basic records, the attributes which
-        can be populated vary between web service end points or databases. In
-        addition, while a model may offer a particular piece of data, MaxMind does not
-        always have every piece of data for any given IP address.
-        
-        Because of these factors, it is possible for any request to return a record
-        where some or all of the attributes are unpopulated.
-        
-        The only piece of data which is always returned is the ``ip_address``
-        attribute in the ``geoip2.records.Traits`` record.
-        
-        Integration with GeoNames
-        -------------------------
-        
-        `GeoNames <http://www.geonames.org/>`_ offers web services and downloadable
-        databases with data on geographical features around the world, including
-        populated places. They offer both free and paid premium data. Each feature is
-        uniquely identified by a ``geoname_id``, which is an integer.
-        
-        Many of the records returned by the GeoIP web services and databases include a
-        ``geoname_id`` field. This is the ID of a geographical feature (city, region,
-        country, etc.) in the GeoNames database.
-        
-        Some of the data that MaxMind provides is also sourced from GeoNames. We
-        source things like place names, ISO codes, and other similar data from the
-        GeoNames premium data set.
-        
-        Reporting Data Problems
-        -----------------------
-        
-        If the problem you find is that an IP address is incorrectly mapped, please
-        `submit your correction to MaxMind <http://www.maxmind.com/en/correction>`_.
-        
-        If you find some other sort of mistake, like an incorrect spelling, please
-        check the `GeoNames site <http://www.geonames.org/>`_ first. Once you've
-        searched for a place and found it on the GeoNames map view, there are a
-        number of links you can use to correct data ("move", "edit", "alternate
-        names", etc.). Once the correction is part of the GeoNames data set, it
-        will be automatically incorporated into future MaxMind releases.
-        
-        If you are a paying MaxMind customer and you're not sure where to submit a
-        correction, please `contact MaxMind support
-        <http://www.maxmind.com/en/support>`_ for help.
-        
-        Requirements
-        ------------
-        
-        This code requires Python 2.6+ or 3.3+. Older versions are not supported.
-        This library has been tested with CPython and PyPy.
-        
-        The Requests HTTP library is also required. See
-        <http://python-requests.org> for details.
-        
-        Versioning
-        ----------
-        
-        The GeoIP2 Python API uses `Semantic Versioning <http://semver.org/>`_.
-        
-        Support
-        -------
-        
-        Please report all issues with this code using the `GitHub issue tracker
-        <https://github.com/maxmind/GeoIP2-python/issues>`_
-        
-        If you are having an issue with a MaxMind service that is not specific to the
-        client API, please contact `MaxMind support
-        <http://www.maxmind.com/en/support>`_ for assistance.
-        
-Platform: UNKNOWN
-Classifier: Development Status :: 5 - Production/Stable
-Classifier: Environment :: Web Environment
-Classifier: Intended Audience :: Developers
-Classifier: Intended Audience :: System Administrators
-Classifier: License :: OSI Approved :: Apache Software License
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Programming Language :: Python
-Classifier: Topic :: Internet :: Proxy Servers
-Classifier: Topic :: Internet
diff --git a/geoip2.egg-info/SOURCES.txt b/geoip2.egg-info/SOURCES.txt
deleted file mode 100644
index 746d421..0000000
--- a/geoip2.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,82 +0,0 @@
-HISTORY.rst
-LICENSE
-MANIFEST.in
-README.rst
-requirements.txt
-setup.cfg
-setup.py
-docs/html/.buildinfo
-docs/html/genindex.html
-docs/html/index.html
-docs/html/objects.inv
-docs/html/py-modindex.html
-docs/html/search.html
-docs/html/searchindex.js
-docs/html/_sources/index.txt
-docs/html/_static/ajax-loader.gif
-docs/html/_static/basic.css
-docs/html/_static/comment-bright.png
-docs/html/_static/comment-close.png
-docs/html/_static/comment.png
-docs/html/_static/contents.png
-docs/html/_static/doctools.js
-docs/html/_static/down-pressed.png
-docs/html/_static/down.png
-docs/html/_static/file.png
-docs/html/_static/jquery-1.11.1.js
-docs/html/_static/jquery.js
-docs/html/_static/minus.png
-docs/html/_static/navigation.png
-docs/html/_static/plus.png
-docs/html/_static/pygments.css
-docs/html/_static/searchtools.js
-docs/html/_static/sphinxdoc.css
-docs/html/_static/underscore-1.3.1.js
-docs/html/_static/underscore.js
-docs/html/_static/up-pressed.png
-docs/html/_static/up.png
-docs/html/_static/websupport.js
-geoip2/__init__.py
-geoip2/compat.py
-geoip2/database.py
-geoip2/errors.py
-geoip2/mixins.py
-geoip2/models.py
-geoip2/records.py
-geoip2/webservice.py
-geoip2.egg-info/PKG-INFO
-geoip2.egg-info/SOURCES.txt
-geoip2.egg-info/dependency_links.txt
-geoip2.egg-info/requires.txt
-geoip2.egg-info/top_level.txt
-tests/__init__.py
-tests/database_test.py
-tests/models_test.py
-tests/webservice_test.py
-tests/data/test-data/GeoIP2-Anonymous-IP-Test.mmdb
-tests/data/test-data/GeoIP2-City-Test-Broken-Double-Format.mmdb
-tests/data/test-data/GeoIP2-City-Test-Invalid-Node-Count.mmdb
-tests/data/test-data/GeoIP2-City-Test.mmdb
-tests/data/test-data/GeoIP2-Connection-Type-Test.mmdb
-tests/data/test-data/GeoIP2-Country-Test.mmdb
-tests/data/test-data/GeoIP2-Domain-Test.mmdb
-tests/data/test-data/GeoIP2-Enterprise-Test.mmdb
-tests/data/test-data/GeoIP2-ISP-Test.mmdb
-tests/data/test-data/GeoIP2-Precision-City-Test.mmdb
-tests/data/test-data/GeoIP2-Precision-ISP-Test.mmdb
-tests/data/test-data/MaxMind-DB-no-ipv4-search-tree.mmdb
-tests/data/test-data/MaxMind-DB-string-value-entries.mmdb
-tests/data/test-data/MaxMind-DB-test-broken-pointers-24.mmdb
-tests/data/test-data/MaxMind-DB-test-broken-search-tree-24.mmdb
-tests/data/test-data/MaxMind-DB-test-decoder.mmdb
-tests/data/test-data/MaxMind-DB-test-ipv4-24.mmdb
-tests/data/test-data/MaxMind-DB-test-ipv4-28.mmdb
-tests/data/test-data/MaxMind-DB-test-ipv4-32.mmdb
-tests/data/test-data/MaxMind-DB-test-ipv6-24.mmdb
-tests/data/test-data/MaxMind-DB-test-ipv6-28.mmdb
-tests/data/test-data/MaxMind-DB-test-ipv6-32.mmdb
-tests/data/test-data/MaxMind-DB-test-metadata-pointers.mmdb
-tests/data/test-data/MaxMind-DB-test-mixed-24.mmdb
-tests/data/test-data/MaxMind-DB-test-mixed-28.mmdb
-tests/data/test-data/MaxMind-DB-test-mixed-32.mmdb
-tests/data/test-data/MaxMind-DB-test-nested.mmdb
\ No newline at end of file
diff --git a/geoip2.egg-info/dependency_links.txt b/geoip2.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/geoip2.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/geoip2.egg-info/requires.txt b/geoip2.egg-info/requires.txt
deleted file mode 100644
index 23a4606..0000000
--- a/geoip2.egg-info/requires.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-requests>=2.9
-maxminddb>=1.2.1
-
-[:python_version=="2.6" or python_version=="2.7"]
-ipaddress
diff --git a/geoip2.egg-info/top_level.txt b/geoip2.egg-info/top_level.txt
deleted file mode 100644
index 3df7f05..0000000
--- a/geoip2.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-geoip2

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-geoip2.git



More information about the Python-modules-commits mailing list