-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 1.3 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
[project]
name = "unsloth-stubs"
version = "0.0.0.dev0"
description = "Type stubs for the Unsloth library, providing enhanced type checking and autocompletion for Python developers."
authors = [
{ name = "D. Danchev", email = "12420863+danchev@users.noreply.github.com" },
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Stubs Only",
]
[project.urls]
Homepage = "https://danchev.github.io/unsloth-stubs"
Source = "https://github.com/danchev/unsloth-stubs"
Issues = "https://github.com/danchev/unsloth-stubs/issues"
[build-system]
requires = ["uv_build>=0.8.17,<0.9.0"]
build-backend = "uv_build"
[tool.uv]
package = true
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[dependency-groups]
dev = ["mypy>=1.18.1", "pyright>=1.1.402", "unsloth >= 2025.9.5"]
[tool.mypy]
custom_typeshed_dir = "typings"
plugins = ["mypy_ruff"]