-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (46 loc) · 1.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
[project]
name = "ignoreme"
version = "1.0.3"
authors = [{ name = "Dêvid Teófilo", email = "nnick4673@gmail.com" }]
description = "A Python client for donotcommit.com"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.1",
"typer>=0.15.2",
]
[project.urls]
Homepage = "https://github.com/devid8642/ignoreme"
Issues = "https://github.com/devid8642/ignoreme/issues"
[project.scripts]
ignoreme = "ignoreme.main:app"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"ruff>=0.11.4",
"taskipy>=1.14.1",
]
[build-system]
requires = ["uv", "setuptools"]
[tool.setuptools.packages.find]
include = ["ignoreme*"]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
preview = true
select = ['I', 'F', 'E', 'W', 'PL', 'PT']
[tool.ruff.format]
preview = true
quote-style = 'single'
[tool.pytest.ini_options]
pythonpath = "."
addopts = '-p no:warnings'
[tool.taskipy.tasks]
lint = 'ruff check'
pre_format = 'ruff check --fix'
format = 'ruff format'
pre_test = 'task lint'
test = 'pytest -s -x --cov=ignoreme -vv'
post_test = 'coverage html'