-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 1.01 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "transidate"
version = "0.4.0"
description = "Commandline tool for XML transit data validation."
authors = ["Ciaran McCormick <ciaran@ciaranmccormick.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8, <4.0"
click = ">=8.0.0"
cryptography = ">=3.3.0"
lxml = ">=4.6.0"
prettytable = ">=2.0.0"
pydantic = ">=1.8.0"
requests = ">=2.24.0"
rich = ">=9.12.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
coverage = "^5.3"
doc8 = "^0.8.1"
flake8 = "^3.8.4"
freezegun = "^1.1.0"
ipdb = "^0.13.4"
ipython = "^8.0.0"
isort = "^5.7.0"
lxml-stubs = "^0.1.1"
mypy = "^0.900"
pip-audit = "^2.4.13"
pre-commit = "^3.3.0"
pytest = "^7.0.0"
types-requests = "^2.28.11.8"
types-freezegun = "^1.1.10"
[tool.coverage.run]
source = [".",]
[tool.coverage.report]
omit = ["*/.pyenv/*", "transidate/cli.py"]
[tool.coverage.html]
directory = "htmlcov"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
transidate = "transidate.cli:cli"