From 825b32dbf1a9c1421cb2a210c57813bc86ed8919 Mon Sep 17 00:00:00 2001 From: Jan Lerking Date: Tue, 5 Mar 2024 19:09:11 +0100 Subject: [PATCH] 0.0.1 initial. /JL --- README.md | 8 ++++++++ pyproject.toml | 19 +++++++++++++++++++ __init__.py => src/pyxtend/__init__.py | 0 .../pyxtend/pyxtend_core.py | 0 .../pyxtend/pyxtend_registry.py | 0 5 files changed, 27 insertions(+) create mode 100644 README.md create mode 100644 pyproject.toml rename __init__.py => src/pyxtend/__init__.py (100%) rename pyxtend_core.py => src/pyxtend/pyxtend_core.py (100%) rename pyxtend_registry.py => src/pyxtend/pyxtend_registry.py (100%) diff --git a/README.md b/README.md new file mode 100644 index 0000000..4b25738 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# pyxtend +A small Python module to implement a plugin system for your application. + +## Usage +```python + +``` + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..96750af --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[project] +name = "pyxtend" +version = "0.0.1" +authors = [ + { name="Jan Lerking" }, +] +description = "A small Python module to implement a plugin system for your application." +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +Homepage = "https://github.com/Lerking/pyxtend" +Issues = "https://github.com/Lerking/pyxtend/issues" +Wiki = "https://github.com/Lerking/pyxtend/wiki" \ No newline at end of file diff --git a/__init__.py b/src/pyxtend/__init__.py similarity index 100% rename from __init__.py rename to src/pyxtend/__init__.py diff --git a/pyxtend_core.py b/src/pyxtend/pyxtend_core.py similarity index 100% rename from pyxtend_core.py rename to src/pyxtend/pyxtend_core.py diff --git a/pyxtend_registry.py b/src/pyxtend/pyxtend_registry.py similarity index 100% rename from pyxtend_registry.py rename to src/pyxtend/pyxtend_registry.py