Skip to content

Commit

Permalink
feat: add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Lor committed May 11, 2024
1 parent 74e8a36 commit f65d14c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]}

0 comments on commit f65d14c

Please sign in to comment.