-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (33 loc) · 969 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-inflow"
version = "1.0.1"
authors = [{ name = "Stephen Huan", email = "[email protected]" }]
description = "A variance-optimal paragraph formatter"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing :: Filters",
]
[project.urls]
Homepage = "https://cgdct.moe/blog/far/"
Repository = "https://github.com/stephen-huan/inflow"
Issues = "https://github.com/stephen-huan/inflow/issues"
[project.scripts]
inflow = "inflow:main"
[tool.pyright]
exclude = [".direnv", "result"]
[tool.ruff]
line-length = 79
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
extend_skip = ["result"]