19 lines
535 B
TOML
19 lines
535 B
TOML
[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" |