37 lines
664 B
TOML
37 lines
664 B
TOML
[tool.poetry]
|
|
name = "jlog"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
pendulum = "^2.1.2"
|
|
arrow = "^1.2.3"
|
|
pillow = "^10.0.1"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.9.1"
|
|
isort = "^5.12.0"
|
|
flake8 = "^6.1.0"
|
|
flake8-pyproject = "^1.2.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
max-line-length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 120
|
|
force_single_line = true
|
|
from_first = false
|
|
force_sort_within_sections = true
|
|
|
|
[tool.flake8]
|
|
max-line-length = 120
|
|
extend-ignore = "E203"
|