-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.15 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=68" ]
[project]
name = "hellbox"
version = "0.1.3"
description = "Build system for font development."
readme = "README.rst"
license = { text = "MIT" }
authors = [ { name = "Jack Jennings", email = "jack@standard-library.com" } ]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
dependencies = [ "ruff>=0,<1", "ty>=0,<1" ]
urls.Homepage = "https://github.com/hellboxpy/hellbox"
[dependency-groups]
dev = [
"commitizen>=4.16.2",
"lefthook>=2.1.6",
"mdformat>=0.7.17",
"pyproject-fmt>=2.21.2",
"pytest>=8,<10",
"ruff>=0,<1",
"twine>=6,<7",
"ty>=0,<1",
"wheel>=0,<1",
]
[tool.setuptools]
packages.find.exclude = [ "tests*" ]