Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96bb0f0f3d | ||
|
|
993617976f | ||
|
|
828213912e | ||
|
|
44136c33b8 | ||
|
|
490423e94a | ||
|
|
fa2c25d6c5 | ||
|
|
0db2e1dfca | ||
|
|
7200cb0bf8 | ||
|
|
da3d09d3b1 |
@@ -0,0 +1,8 @@
|
|||||||
|
dist:
|
||||||
|
python -m build
|
||||||
|
|
||||||
|
test:
|
||||||
|
twine upload --repository testpypi /dist
|
||||||
|
|
||||||
|
publish:
|
||||||
|
twine upload --repository pypi /dist
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# XtendR
|
# XtendR
|
||||||
|
|
||||||
A very basic Python >= 3.12 plugin system based on the K.I.S.S principle.
|
A very basic Python 3.12 plugin system based on the K.I.S.S principle.
|
||||||
|
|
||||||
I was in need of a new plugin system, which should meet these requirements:
|
I was in need of a new plugin system, which should meet these requirements:
|
||||||
:heavy_plus_sign: Simple to use
|
:heavy_plus_sign: Simple to use
|
||||||
|
|||||||
@@ -3,17 +3,17 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="XtendR",
|
name="XtendR",
|
||||||
version="0.0.5",
|
version="0.0.7",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=[],
|
install_requires=[],
|
||||||
author="Jan Lerking",
|
author="Jan Lerking",
|
||||||
author_email="",
|
author_email="",
|
||||||
description="A modular plugin system for Python.",
|
description="A modular plugin system for Python.",
|
||||||
url="www.gitea.com/Lerking/XtendR",
|
url="https://www.gitea.com/Lerking/XtendR",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.11",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
],
|
],
|
||||||
python_requires='>=3.12',
|
python_requires='>=3.11',
|
||||||
)
|
)
|
||||||
Reference in New Issue
Block a user