-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.11 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
[tool.poetry]
name = "consoler"
version = "0.1.7"
description = ""
authors = ["Hactar <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/hactar-is/consoler"
repository = "https://github.com/hactar-is/consoler"
keywords = ["console", "terminal", "logging"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
arrow = "^1.2.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py310" # Change this to match the project
line-length = 100
extend-exclude = ["tests", "*/migrations/*", "src/**/*"]
[tool.ruff.lint]
select = [
"E", "F", "B", "DJ", "C90", "S", "COM", "DTZ", "EM",
"PT", "RET", "SIM", "TCH", "ARG", "PTH", "PERF"
]
extend-ignore = ["E402", "RET504", "S101", "DJ012"]
ignore-init-module-imports = true
[tool.ruff.lint.isort]
combine-as-imports = true
force-wrap-aliases = true