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