-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (61 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
63 lines (61 loc) · 1.6 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
[project]
name = "stubFileNotFound"
version = "0.0.1"
description = "Crowdsourced (a crowd of 1) stub type-files for third-party Python packages."
readme = "README.md"
requires-python = ">=3.12"
license = "CC-BY-NC-4.0"
authors = [{ name = "Hunter Hogan", email = "HunterHogan@pm.me" }]
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"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",
"Typing :: Typed",
]
urls = { Donate = "https://www.patreon.com/integrated", Homepage = "https://github.com/hunterhogan/stubFileNotFound", Repository = "https://github.com/hunterhogan/stubFileNotFound.git" }
dependencies = [
"MonkeyType",
"autotyping",
"charset_normalizer",
"hunterMakesPy",
"libcst",
"mypy",
"pyrefly",
"pyright",
"pyupgrade",
"ruff",
"stub-generator",
"stubdefaulter@git+https://github.com/JelleZijlstra/stubdefaulter.git",
"typeshed_client",
]
optional-dependencies = { effingPandas = [
"odfpy",
"pandas",
"pyxlsb",
"scipy-stubs",
"scipy",
"sqlalchemy",
"xarray",
"xlsxwriter",
], stubdefaulter = [
"fonttools",
"afdko",
"fontmake[all]",
"gftools",
"glyphsLib[colr,ufo-normalization]",
"resampy",
] }
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-data = { "*" = ["py.typed"] }
packages = { find = {} }