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

Commit

Permalink
start package importing code from isogeo-to-office
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Aug 30, 2019
1 parent a44ca7c commit eff6791
Show file tree
Hide file tree
Showing 11 changed files with 1,550 additions and 0 deletions.
28 changes: 28 additions & 0 deletions isogeopyxl/__about__.py
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__)
16 changes: 16 additions & 0 deletions isogeopyxl/__init__.py
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__
Loading

0 comments on commit eff6791

Please sign in to comment.