From febdc6783387bfaf3d28c31631f26fec92f9f0d1 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Thu, 21 Aug 2025 14:03:10 +0200 Subject: [PATCH] initial import --- .gitignore | 17 +++++++++++++++++ LICENSE | 21 +++++++++++++++++++++ pyproject.toml | 20 ++++++++++++++++++++ scopes/__init__.py | 1 + scopes/office/__init__.py | 1 + 5 files changed, 60 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 pyproject.toml create mode 100644 scopes/__init__.py create mode 100644 scopes/office/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0fb90a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +*.pyc +*.pyo +*.egg-info +*.project +*.log +*.swp +*.pydevproject +*.sublime-project +*.sublime-workspace +*.ropeproject +.env +.private* +.pytest.ini +*#*# +*.#* +__pycache__ +var diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..71fa02e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (C) 2024 cyberconcepts.org team + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..80a0284 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +name = "py-scopes-ext" +version = "3.0.1" +description = "Extension libraries for the py-scopes package" +readme = "README.md" +license = {text = "MIT"} +keywords = ["scopes office"] +authors = [{name = "Helmut Merz", email = "helmutm@cy55.de"}] + +dependencies = [ + "py-scopes", +] + +[tool.setuptools] +packages = ["scopes.office"] + diff --git a/scopes/__init__.py b/scopes/__init__.py new file mode 100644 index 0000000..c9b856f --- /dev/null +++ b/scopes/__init__.py @@ -0,0 +1 @@ +"""package scopes""" diff --git a/scopes/office/__init__.py b/scopes/office/__init__.py new file mode 100644 index 0000000..c9b856f --- /dev/null +++ b/scopes/office/__init__.py @@ -0,0 +1 @@ +"""package scopes"""