diff --git a/pyproject.toml b/pyproject.toml index 1dc6036..201e444 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,36 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[tool.setuptools] +packages = ["pkg_api"] + [tool.black] line-length = 80 -target-version = ['py39'] +target-version = ["py39"] + +[project] +name = "pkg_api" +version = "0.0.1" +authors = [ + { name="IAI group" }, +] +description = "PKG API" +readme = "README.md" +requires-python = ">=3.9" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] +dependencies = [ + "rdflib==6.3.2", + "Flask>=2.3.3", + "Flask-RESTful>=0.3.10", +] + +[project.urls] +"Homepage" = "https://github.com/iai-group/pkg-api" +"Issue Tracker" = "https://github.com/iai-group/pkg-api/issues" + +