Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Package all data files when pulling osprey as a library (#55)

Co-authored-by: juliet <julietshen@users.noreply.github.com>

authored by

Leon Shi
juliet
and committed by
GitHub
b1a620ea fd25958e

+11
+11
osprey_worker/pyproject.toml
··· 1 + [build-system] 2 + requires = ["setuptools>=61.0", "wheel"] 3 + build-backend = "setuptools.build_meta" 4 + 1 5 [project] 2 6 name = "osprey-worker" 3 7 version = "0.1.0" ··· 10 14 ] 11 15 [project.scripts] 12 16 osprey-cli = "osprey.worker.lib.cli:cli" 17 + 13 18 [project.entry-points."osprey_plugin"] 14 19 stdlib = "osprey.worker._stdlibplugin" 20 + 21 + [tool.setuptools] 22 + include-package-data = true 23 + 24 + [tool.setuptools.package-data] 25 + "*" = ["*.json", "*.yaml", "*.yml"]