-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (31 loc) · 874 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
32
33
34
35
36
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nstimes"
version = "0.4.8"
description = "CLI tool to obtain schedule info from the dutch railway services"
authors = [ "Erik van Raalte",]
readme = "README.md"
license = "MIT"
keywords = [ "nederland", "NS", "spoorwegen", "Nederlandse", "reisplanner",]
repository = "https://github.com/evanraalte/nstimes"
[tool.poetry.dependencies]
python = "^3.10"
httpx = "^0.25.0"
python-dotenv = "^1.0.0"
pydantic-settings = "^2.0.3"
pydantic = "^2.4.2"
[tool.poetry.scripts]
nstimes = "nstimes.main:app"
[tool.poetry.dependencies.typer]
version = "^0.9.0"
extras = [ "all",]
[tool.poetry.group.test.dependencies]
httpx-cache = "^0.13.0"
pytest = "^7.4.2"
pre-commit = "^3.4.0"
hypothesis = "^6.87.3"
pytest-cov = "^4.1.0"
pytest-watch = "^4.2.0"
pytest-httpx = "^0.26.0"