-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) Β· 1.21 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
[project]
name = "felis-catus"
version = "0.dev4"
description = "π Felis Catus β functional bits for Python"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ name = "LeeeeT", email = "[email protected]" }]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Zero-Clause BSD (0BSD)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/LeeeeT/felis"
Documentation = "https://felis.LeeeeT.dev"
Repository = "https://github.com/LeeeeT/felis"
PyPI = "https://pypi.org/project/felis-catus"
[tool.ruff]
line-length = 160
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["A", "ANN", "ARG", "C90", "D", "F402", "FBT", "FIX", "S", "T20", "TCH", "TD", "PGH"]
[tool.pyright]
pythonVersion = "3.12"
include = ["src"]
typeCheckingMode = "strict"