-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (32 loc) · 957 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
[tool.poetry]
name = "ruterstop"
description = "Et program som viser sanntidsinformasjon for stoppesteder i Oslo og deler av Viken."
version = "0.5.1"
authors = ["Stig Otnes Kolstad <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/stigok/ruterstop"
documentation = "http://github.com/stigok/ruterstop"
repository = "https://github.com/stigok/ruterstop"
license = "MIT"
keywords = ["ruter", "entur", "ruter-api", "kollektivtransport", "oslo"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
packages = [
{ include = "ruterstop" },
]
[tool.poetry.scripts]
ruterstop = "ruterstop:main"
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.25.1"
bottle = "^0.12.19"
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
coverage = "^5.5"
freezegun = "^1.1.0"
WebTest = "^2.0.35"
[build-system]
requires = ["poetry-core>=1.1.5"]
build-backend = "poetry.core.masonry.api"