-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tool.poetry]
name = "simple-plugin-loader"
version = "0.0.0"
description = "Dynamically load other python modules to your project."
readme = "README.md"
license = "GPL-3.0-only"
authors = ["Marc Ammon <marc.ammon@hotmail.de>"]
homepage = "https://github.com/mammo0/py-simple-plugin-loader"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.8"
simple-classproperty = ">=3.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.5"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
metadata = false
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"