From f65d14cb0e25b037f090050f899634edee83efd9 Mon Sep 17 00:00:00 2001 From: David-Lor <17401854+david-lor@users.noreply.github.com> Date: Sat, 11 May 2024 13:17:22 +0200 Subject: [PATCH] feat: add pyproject.toml --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d7a7680 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "vigobusapi" +version = "1.0.1" +description = "Python library that provides Stop and Bus information provided by the public transport system of the city of Vigo." +requires-python = ">=3.9,<4.0" +license = {file = "LICENSE.md"} +dynamic = ["dependencies"] + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[tool.setuptools.packages.find] +where = ["vigobus"] +include = ["vigobus"] +exclude = ["back_tools"] +namespaces = false + +[tool.setuptools.dynamic] +dependencies = {file = ["vigobus/requirements.txt"]}