-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 818 Bytes
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
[project]
name = "pybites-carbon"
version = "0.8.1"
authors = [{name = "Pybites", email = "info@pybit.es"}]
description = "Create code images from CLI using carbon"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"playwright>=1.47.0",
"pyperclip>=1.9.0",
"python-dotenv>=1.0.1",
]
[tool.uv]
dev-dependencies = [
"mypy>=1.12.0",
"pre-commit>=4.0.1",
"pytesseract>=0.3.13",
"pytest-cov>=6.1.1",
"pytest-playwright>=0.5.2",
"ruff>=0.7.0",
]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "I"]
ignore = ["E501"]
[tool.mypy]
ignore_missing_imports = true
[project.urls]
Source = "https://github.com/PyBites-Open-Source/pybites-carbon"
[project.scripts]
carbon = "carbon.__main__:main"
[tool.coverage.run]
source = ["carbon"]