-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 899 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "oasa_api"
version = "0.1.1"
description = "This Python package provides a convenient wrapper to interact with the OASA S.A. (Athens Public Transport) API, allowing users to retrieve various information related to the public transport network in Athens, Greece."
readme = "README.md"
license = { file="LICENSE" }
authors = [
{ name = "Romain DEROLLEPOT", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas",
"requests",
]
keywords = ["API", "data", "public transport", "Athens", "timetables"]
[project.urls]
Repository = "https://github.com/rderollepot/oasa_api.git"
[tool.pytest.ini_options]
pythonpath = [
"."
]