-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
124 lines (104 loc) · 2.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[tool.poetry]
name = "ignori"
version = "1.1.0"
description = "Generate .gitignore file without leaving the terminal."
authors = ["Gamaliel Garcia <[email protected]>"]
maintainers = ["Gamaliel Garcia <[email protected]>"]
readme = "README.md"
repository = "https://github.com/EGAMAGZ/ignori"
homepage = "https://github.com/EGAMAGZ/ignori"
license = "MIT"
keywords = [
"gitignore-generator",
"generator",
"ignori",
"tui",
"textual",
"textualize",
"developer-tool",
"tool",
]
classifiers = [
'License :: OSI Approved :: MIT License',
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Curses",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Version Control :: Git",
"Typing :: Typed",
]
exclude = ["tests", "CONTRIBUTING.md"]
include = [
"LICENSE",
"README.md",
]
[tool.poetry.dependencies]
python = ">=3.11,<4.0.0"
textual = "^0.73.0"
rich = "^13.7.1"
[tool.poetry.scripts]
ignori = "ignori.app:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/EGAMAGZ/ignori/issues"
[tool.poetry.group.dev.dependencies]
textual-dev = "^1.5.1"
ruff = "^0.5.6"
mypy = "^1.10.0"
ruff-lsp = "^0.0.54"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-asyncio = "^0.23.8"
tox-gh-actions = "^3.2.0"
tox = "^4.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py311"
exclude = [".git", "__pycache__", "styles", ".vscode", ".github"]
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"N",
"UP",
"ANN",
"BLE",
"A",
"COM",
"C4",
"DTZ",
"Q",
"SLF",
"SIM",
"PTH",
"I",
]
ignore = ["COM812"]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.mypy]
python_version = "3.11"
check_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
no_implicit_reexport = true
allow_redefinition = true
show_error_codes = true