-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
92 lines (81 loc) · 2.09 KB
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
[project]
name = "pls-cli"
version = "0.4.1"
description = "Minimalist and full configurable greetings and TODO list"
authors = [
{name = "Felipe Guedes", email = "contatofelipeguedes@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["pls", "please", "todo", "cli"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"rich>=13.7.0",
"typer>=0.9.0",
]
[dependency-groups]
test = [
"pytest>=7.2",
"pytest-cov>=4.0.0",
"freezegun>=1.2.2",
]
dev = [
"ruff>=0.8.0",
"mypy>=1.0.0",
"pip-audit>=2.8.0",
"mkdocs>=1.5.3",
"mkdocs-material>=9.2.7",
"mkdocs-meta-descriptions-plugin>=3.0.0",
"types-setuptools>=69.0.0",
]
[project.urls]
Homepage = "https://guedesfelipe.github.io/pls-cli/"
Documentation = "https://guedesfelipe.github.io/pls-cli/"
Repository = "https://github.com/guedesfelipe/pls-cli"
[project.scripts]
pls = "pls_cli.please:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pls_cli"]
[tool.ruff]
line-length = 80
target-version = "py38"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"TCH", # flake8-type-checking
]
ignore = []
[tool.ruff.lint.pycodestyle]
max-line-length = 80
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint.isort]
force-single-line = false
force-wrap-aliases = true
combine-as-imports = true
split-on-trailing-comma = true
[tool.mypy]
ignore_missing_imports = true
follow_imports = "skip"