-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 1.04 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
[tool.poetry]
name = "l9format"
version = "1.3.1a3"
license = "MIT"
description = "l9format is a schema declaration targeted at interoperability between network recon tools used at LeakIX"
authors = ["Danny Willems <[email protected]>"]
maintainers = ["Danny Willems <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/leakix/l9format-python"
repository = "https://github.com/leakix/l9format-python"
documentation = "https://github.com/leakix/l9format-python"
[tool.poetry.dependencies]
python = "^3.7"
# Updating to 0.9.0 breaks the support of iso8601.
# The author of serde updated its code to use the stdlib iso8601 support, which
# does not support for instance:
# 2023-10-05T23:30:36.823867784Z
# Bump up to python 3.11 fixes the issue as it seems fixed in the stdlib of 3.11
serde = "^0.8.1"
[tool.poetry.dev-dependencies]
pytest = "*"
black = "^22"
mypy = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/leakix/l9format-python/issues"