-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (108 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
118 lines (108 loc) · 2.01 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
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
[project]
name = "sketches"
description = "Sketch a day, 2025 edition"
dynamic = ["version"]
authors = [
{"name" = "Erico Andrei", "email" = "ericof@gmail.com"},
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.14"
keywords = [
"CMS",
"Plone",
"Python",
]
classifiers = [
"Development Status :: 6 - Mature",
"Operating System :: OS Independent",
"Programming Language :: Python","Programming Language :: Python :: 3.13",
"Programming Language :: Python","Programming Language :: Python :: 3.14",
]
dependencies = [
"py5",
"CairoSVG",
"opencv-python",
"pymunk",
"scikit-learn",
"prettyconf",
"typer",
"requests",
"gitpython",
"shapely",
"trimesh",
"opensimplex",
"install-jdk",
"sounddevice",
"osmnx>=2.0.4",
"wordcloud>=1.9.4",
"python-slugify>=8.0.4",
]
[tool.hatch.version]
path = "sketches/__init__.py"
[dependency-groups]
build = [
"hatchling",
"wheel",
]
dev = [
"pre-commit",
"ruff",
]
[project.urls]
Homepage = "https://ericof.com/en/sketches"
Source = "https://github.com/ericof/sketch-a-day"
[project.scripts]
sketches = 'sketches.utils.cli:app'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
default-groups = ["build", "dev"]
[tool.ruff]
target-version = "py313"
line-length = 88
fix = true
lint.select = [
# flake8-2020
"YTT",
# flake8-bandit
"S",
# flake8-bugbear
"B",
# flake8-builtins
"A",
# flake8-comprehensions
"C4",
# flake8-debugger
"T10",
# flake8-simplify
"SIM",
# mccabe
"C90",
# pycodestyle
"E", "W",
# pyflakes
"F",
# pygrep-hooks
"PGH",
# pyupgrade
"UP",
# ruff
"RUF",
]
lint.ignore = [
# DoNotAssignLambda
"E731",
]
[tool.ruff.lint.isort]
case-sensitive = false
no-sections = true
force-single-line = true
from-first = true
lines-after-imports = 2
lines-between-types = 1
order-by-type = false
[tool.ruff.format]
preview = true