Mirror of https://github.com/roostorg/osprey
github.com/roostorg/osprey
1[project]
2name = "example_plugins"
3version = "0.1.0"
4description = "Example plugins for Osprey"
5requires-python = ">=3.11"
6dependencies = [
7 "pluggy==1.5.0"
8]
9
10[tool.setuptools]
11package-dir = {"" = "src"}
12
13[tool.setuptools.packages.find]
14where = ["src"]
15
16[project.entry-points.osprey_plugin]
17register_plugins = "register_plugins"