-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (41 loc) · 1.03 KB
/
pyproject.toml
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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "antsi"
description = "A quick and user-friendly way to style your text using ANSI codes"
authors = [
{ name = "Alex Krantz", email = "[email protected]" },
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = []
[project.urls]
homepage = "https://github.com/akrantz01/antsi"
issues = "https://github.com/akrantz01/antsi/issues"
[tool.maturin]
module-name = "antsi._antsi"
features = ["pyo3/extension-module"]
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"mypy>=1.9.0",
"ruff>=0.3.5",
]
[tool.pdm.scripts]
stubtest = "stubtest antsi"
[tool.ruff]
line-length = 100
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"
docstring-code-format = true