From 2a390e99e03fe538169aa6d7c23669eaa5ece467 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Fri, 25 Oct 2024 18:24:13 +0200 Subject: Added the requirements on the static files --- pyproject.toml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index cae5554..9ef21d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,10 @@ +[build-system] +requires = ["setuptools>=64", "setuptools_scm>=8"] +build-backend = "setuptools.build_meta" + [project] name = "match_up" -version = "0.1" +dynamic = ["version"] authors = [ { name="Karan Jayachandra", email="mail@karanjayachandra.com" }, ] @@ -15,4 +19,15 @@ classifiers = [ [project.urls] Homepage = "https://gitlab.com/KaranJayachandra/match_up" -Issues = "https://gitlab.com/KaranJayachandra/match_up/-/issues" \ No newline at end of file +Issues = "https://gitlab.com/KaranJayachandra/match_up/-/issues" + + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.setuptools.package-data] +"*" = ["*.txt"] +mypkg1 = ["data1.rst"] + +[project.scripts] +match_up = "match_up:main" \ No newline at end of file -- cgit v1.3.1