-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (73 loc) · 1.8 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["flit_core>=3.12,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pythonic-fp"
version = "4.1.0"
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 = [
"pythonic-fp-booleans==4.0.0",
"pythonic-fp-circulararray==6.1.1",
"pythonic-fp-containers==4.1.0",
"pythonic-fp-fptools==5.4.0",
"pythonic-fp-gadgets==4.1.0",
"pythonic-fp-iterables==5.1.4",
"pythonic-fp-numpy==1.0.0",
"pythonic-fp-queues==5.1.3",
"pythonic-fp-splitends==2.0.3",
]
description = "Pythonic FP homepage and coordinated releases."
[project.urls]
Changelog = "https://github.com/grscheller/pythonic-fp/blob/main/CHANGELOG.md"
Homepage = "https://grscheller.github.io/pythonic-fp/"
Source = "https://github.com/grscheller/pythonic-fp"
[project.optional-dependencies]
test = [
"pytest>=8.4.1",
]
[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.pytest]
addopts = ["-ra"]
consider_namespace_packages = true
testpaths = ["tests/"]
[tool.ruff]
target-version = "py314"
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = [
"E731",
"C901",
]
"**/*.py" = ["E741"]
[tool.ruff.format]
quote-style = "single"
docstring-code-line-length = 72