0.0.1 initial. /JL

This commit is contained in:
2024-03-05 19:09:11 +01:00
parent c7efe53a95
commit 825b32dbf1
5 changed files with 27 additions and 0 deletions

8
README.md Normal file
View File

@@ -0,0 +1,8 @@
# pyxtend
A small Python module to implement a plugin system for your application.
## Usage
```python
```

19
pyproject.toml Normal file
View File

@@ -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"