From c160ffcc495bb0ba372558d102db18bbf26db357 Mon Sep 17 00:00:00 2001 From: DevER-M Date: Wed, 23 Oct 2024 20:09:38 +0530 Subject: [PATCH] pyproject still --- pyproject.toml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e1fe04f..088d0a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,4 +25,15 @@ classifiers = [ "Programming Language :: Python :: 3" ] [tool.setuptools.dynamic] -dependencies = {file = ["requirements.txt"]} \ No newline at end of file +dependencies = {file = ["requirements.txt"]} + +[tool.setuptools.packages.find] +where = ["."] # list of folders that contain the packages (["."] by default) +include = ["pic/"] # package names should match these glob patterns (["*"] by default) +exclude = [] + +[tool.setuptools.package-data] +pic = ["pic/*"] + +[project.scripts] +yami = "yami:main"