-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.1 KB
/
pyproject.toml
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
[project]
name = "bin-package-manager"
version = "2.2.11"
description = "Bin package manager, a package manager based on Github release"
authors = [{ name = "lxl66566", email = "[email protected]" }]
license = "MIT"
readme = "README.md"
keywords = ["binary", "packaging", "release"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"pretty-assert>=0.1.1",
"py7zr>=0.22.0",
"pylnk3>=0.4.2",
"requests>=2.32.3",
"tqdm>=4.66.5",
]
[tool.uv]
dev-dependencies = ["pytest>=8.3.3"]
[project.urls]
Repository = "https://github.com/lxl66566/bpm"
Homepage = "https://github.com/lxl66566/bpm"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["bpm"]
[project.scripts]
bpm = "bpm.cli:main"
[tool.hatch.build.targets.sdist]
include = ["/bpm"]