Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Fix about url
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed May 14, 2020
1 parent dedc12d commit f4c5e15
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions isogeotoxlsx/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,21 @@
"__copyright__",
]


__title__ = "Isogeo MS Excel Exporter"
__author__ = "Isogeo"
__copyright__ = "2016 - {0}, {1}".format(date.today().year, __author__)
__email__ = "[email protected]"
__license__ = "GNU Lesser General Public License v3.0"
__summary__ = "Toolbelt to export metadata from the Isogeo REST API into Microsoft Excel workbooks (.xlsx)."
__uri__ = "https://pypi.org/project/isogeo-export-xl/"
__title__ = "Isogeo MS Excel Exporter"
__title_clean__ = "".join(e for e in __title__ if e.isalnum())
__uri__ = "https://github.com/isogeo/export-xlsx-py/"

__version__ = "1.3.1"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
for num in __version__.replace("-", ".", 1).split(".")
]
)

__author__ = "Isogeo"
__email__ = "[email protected]"

__license__ = "GNU Lesser General Public License v3.0"
__copyright__ = "2016 - {0}, {1}".format(date.today().year, __author__)

0 comments on commit f4c5e15

Please sign in to comment.