-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.34 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
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["flit_core>=3.12,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pythonic-fp"
version = "4.0.1"
readme = "README.md"
requires-python = ">=3.13"
authors = [
{ name = "Geoffrey R. Scheller", email = "geoffrey@scheller.com" },
]
keywords = [
"functional",
"pythonic",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = []
dynamic = ["description"]
[project.urls]
Changelog = "https://github.com/grscheller/pythonic-fp/blob/main/CHANGELOG.md"
Homepage = "https://grscheller.github.io/pythonic-fp/homepage/html/"
Source = "https://github.com/grscheller/pythonic-fp"
[tool.flit.sdist]
exclude = [
"docs/",
]
[tool.flit.module]
name = "pythonic_fp.homepage"
[tool.mypy]
explicit_package_bases = true
local_partial_types = true
namespace_packages = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
[tool.pylsp-mypy]
enabled = true
live-mode = true
dmypy = false
strict = true
report_progress = true
[tool.ruff]
target-version = "py314"
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.format]
quote-style = "single"
docstring-code-line-length = 72