We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a31f3 commit 9cf5f79Copy full SHA for 9cf5f79
overpass/__init__.py
@@ -1,14 +1,7 @@
1
-# -*- coding: utf-8 -*-
2
-
3
-# Copyright 2015-2018 Martijn van Exel.
4
-# This file is part of the overpass-api-python-wrapper project
5
-# which is licensed under Apache 2.0.
6
-# See LICENSE.txt for the full license text.
7
8
-"""Thin wrapper around the OpenStreetMap Overpass API."""
+from importlib.metadata import version
9
10
__title__ = "overpass"
11
-__version__ = "0.7"
+__version__ = version("overpass")
12
__license__ = "Apache 2.0"
13
14
from .api import API
setup.cfg
setup.py
0 commit comments