Skip to content

Commit 93361e1

Browse files
committed
feat: add pyproject.toml
1 parent 74e8a36 commit 93361e1

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[project]
2+
name = "vigobus"
3+
version = "1.0.1"
4+
description = "Python library that provides Stop and Bus information provided by the public transport system of the city of Vigo."
5+
requires-python = ">=3.9,<4.0"
6+
license = {file = "LICENSE.md"}
7+
dynamic = ["dependencies"]
8+
9+
[build-system]
10+
requires = ["setuptools"]
11+
build-backend = "setuptools.build_meta"
12+
13+
[tool.setuptools.packages.find]
14+
where = ["vigobus"]
15+
include = ["vigobus"]
16+
exclude = ["back_tools"]
17+
namespaces = false
18+
19+
[tool.setuptools.dynamic]
20+
dependencies = {file = ["vigobus/requirements.txt"]}

0 commit comments

Comments
 (0)