-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
206 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
from importlib.metadata import version | ||
from typing import List, Tuple | ||
|
||
__author__ = "Aurélien Grenotton (agrenott@gmail.com)" | ||
__version__ = version("pyhgtmap") | ||
__license__ = "GPLv2+" | ||
|
||
# Can't use __future__ annotations for type aliases: https://github.com/python/cpython/issues/95805 | ||
# Some type aliases | ||
Polygon = list[tuple[float, float]] | ||
PolygonsList = list[Polygon] | ||
Polygon = List[Tuple[float, float]] | ||
PolygonsList = List[Polygon] | ||
BoudingBox = Tuple[float, float, float, float] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.