This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
start package importing code from isogeo-to-office
- Loading branch information
Showing
11 changed files
with
1,550 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Metadata bout the package to easily retrieve informations about it. | ||
# see: https://packaging.python.org/guides/single-sourcing-package-version/ | ||
|
||
from datetime import date | ||
|
||
__all__ = [ | ||
"__title__", | ||
"__summary__", | ||
"__uri__", | ||
"__version__", | ||
"__author__", | ||
"__email__", | ||
"__license__", | ||
"__copyright__", | ||
] | ||
|
||
|
||
__title__ = "Isogeo MS Excel Exporter" | ||
__summary__ = "Toolbelt to export metadata from the Isogeo REST API into Microsoft Excel workbooks (.xlsx)." | ||
__uri__ = "https://pypi.org/project/isogeo-export-xl/" | ||
|
||
__version__ = "1.0.0" | ||
|
||
__author__ = "Isogeo" | ||
__email__ = "[email protected]" | ||
|
||
__license__ = "GNU Lesser General Public License v3.0" | ||
__copyright__ = "2016 - {0}, {1}".format(date.today().year, __author__) |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
#! python3 | ||
|
||
""" | ||
This package is used to export Isogeo metadata into Excel workbooks usng the Isogeo Python SDK and OpenPyXl. | ||
""" | ||
|
||
# submodules | ||
from .__about__ import __version__ # noqa: F401 | ||
from .isogeo2xlsx import Isogeo2xlsx # noqa: F401 | ||
|
||
# subpackages | ||
from .matrix import * # noqa: F401 | ||
from .utils import * # noqa: F401 | ||
|
||
VERSION = __version__ |
Oops, something went wrong.