-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 649 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 649 Bytes
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
[project]
name = "rustbin"
description = "🦀 Fast rustup shims for python"
authors = [{name="Tremeschin"}]
version = "1.29.0"
readme = "readme.md"
license = {text="MIT OR Apache-2.0"}
requires-python = ">=3.9"
[project.urls]
GitHub = "https://github.com/BrokenSource/Rustbin"
[tool.uv]
managed = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# This package is purely bin files
[tool.hatch.build.targets.wheel]
exclude = ["*"]
[tool.hatch.build.targets.sdist]
exclude = [".github"]
[tool.hatch.build.hooks.custom]
dependencies = [
"attrs",
"requests",
"requests-cache",
]