-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.46 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=68" ]
[project]
name = "hellbox-drawbot"
description = "DrawBot specimen generation job for hellbox."
readme = "README.md"
license = { text = "MIT" }
authors = [ { name = "Jack Jennings", email = "jack@standard-library.com" } ]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Build Tools",
]
dynamic = [ "version" ]
dependencies = [
"drawbot",
"hellbox",
]
urls.Homepage = "https://github.com/hellboxpy/hellbox-drawbot"
[dependency-groups]
dev = [
"commitizen>=4.16.2",
"mdformat",
"pyproject-fmt>=2.21.2",
"pytest>=9.0.3",
"ruff>=0,<1",
"ty>=0.0.36",
]
[tool.setuptools]
packages.find.where = [ "src" ]
packages.find.namespaces = true
packages.find.exclude = [ "hellbox", "hellbox.jobs" ]
[tool.uv]
sources.drawbot = { git = "https://github.com/typemytype/drawbot" }
sources.hellbox = { git = "https://github.com/hellboxpy/hellbox.git" }
[tool.ty]
overrides = [ { include = [ "tests/**" ], rules.unresolved-import = "ignore" } ]