-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
141 lines (135 loc) · 3.56 KB
/
pyproject.toml
File metadata and controls
141 lines (135 loc) · 3.56 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
[project]
name = "hunterMakesPy"
version = "0.5.2"
description = "Easy Python functions making making functional Python functions easier."
readme = "README.md"
requires-python = ">=3.12"
license = "CC-BY-NC-4.0"
authors = [{ name = "Hunter Hogan", email = "HunterHogan@pm.me" }]
keywords = [
"attribute loading",
"concurrency limit",
"configuration",
"cytoolz",
"defensive programming",
"dictionary merging",
"directory creation",
"dynamic import",
"error propagation",
"file system utilities",
"input validation",
"integer parsing",
"module loading",
"nested data structures",
"package settings",
"parameter validation",
"pytest",
"string extraction",
"test utilities",
"toolz",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"autoflake",
"charset_normalizer",
"isort",
"more_itertools",
"numpy",
"typing_extensions>=4.10.0",
]
optional-dependencies = { development = [
"astToolkit",
"setuptools>=62.3",
"pytest-cov",
], testing = [
"cython",
"pytest",
"pytest-xdist",
] }
[project.urls]
Documentation = "https://context7.com/hunterhogan/huntermakespy"
Donate = "https://www.patreon.com/integrated"
Homepage = "https://github.com/hunterhogan/hunterMakesPy"
Issues = "https://github.com/hunterhogan/hunterMakesPy/issues"
Repository = "https://github.com/hunterhogan/hunterMakesPy"
[build-system]
requires = [
"cython",
"setuptools>=62.3",
]
build-backend = "setuptools.build_meta"
[tool.coverage]
report = { exclude_lines = [
"if TYPE_CHECKING:",
"if __name__ == \"__main__\":",
], ignore_errors = false }
run = { branch = true, concurrency = [
"multiprocessing",
], data_file = "tests/coverage/.coverage", omit = [
"tests/*",
"hunterMakesPy/tests/*",
"humpy_toolz/sandbox/tests",
"humpy_toolz/tests",
"humpy_cytoolz/tests",
], parallel = true, source = [
".",
] }
[tool.pytest]
addopts = ["--color=auto"]
log_auto_indent = "On"
testpaths = [
"humpy_cytoolz/tests",
"humpy_toolz/sandbox/tests",
"humpy_toolz/tests",
"hunterMakesPy/tests",
]
[tool.setuptools]
ext-modules = [
{ name = "humpy_cytoolz.dicttoolz", sources = ["humpy_cytoolz/dicttoolz.pyx"] },
{ name = "humpy_cytoolz.functoolz", sources = ["humpy_cytoolz/functoolz.pyx"] },
{ name = "humpy_cytoolz.itertoolz", sources = ["humpy_cytoolz/itertoolz.pyx"] },
{ name = "humpy_cytoolz.recipes", sources = ["humpy_cytoolz/recipes.pyx"] },
{ name = "humpy_cytoolz.utils", sources = ["humpy_cytoolz/utils.pyx"] },
]
package-data = { "*" = [
"*.c",
"*.pxd",
"*.pyi",
"*.pyx",
"py.typed",
"Notice_of_Copyright.txt"
] }
packages = [
"humpy_cytoolz.curried",
"humpy_cytoolz.tests",
"humpy_cytoolz",
"humpy_tlz",
"humpy_toolz",
"humpy_toolz.curried",
"humpy_toolz.sandbox.tests",
"humpy_toolz.sandbox",
"humpy_toolz.tests",
"hunterMakesPy",
"hunterMakesPy.tests",
]
[tool.updateCitation]
filenameCitationDOTcff = "CITATION.cff"
pathFilenameCitationSSOT = "citations/CITATION.cff"