-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 866 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 = "transilienwatcher"
version = "1.0.0"
description = "Transilien (parisian public transport) timetables on LCD display."
authors = ["u8slvn <u8slvn@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.26.0"
defusedxml = "^0.7.1"
adafruit-circuitpython-charlcd = "^3.3.10"
PyYAML = "^6.0"
loguru = "^0.5.3"
Cerberus = "^1.3.4"
coveralls = {version = "^3.2.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pytest-mock = "^3.6.1"
freezegun = "^1.1.0"
flake8 = "^4.0.1"
bandit = "^1.7.0"
black = "^21.10b0"
[tool.poetry.extras]
coverage = ["coveralls"]
[tool.poetry.scripts]
transilienwatcher = "transilienwatcher.cli:run"
transilienwatcher-init = "transilienwatcher.cli:init"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"