-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
52 lines (45 loc) · 1.3 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
46
47
48
49
50
51
52
[project]
name = "apkutils"
version = "1.5.8"
description = "一个APK解析库"
authors = [{ name = "kin9-0rz", email = "[email protected]" }]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: Chinese (Simplified)",
"Development Status :: 3 - Alpha",
]
dependencies = [
"Pygments>=2.12.0,<3.0.0",
"beautifulsoup4>=4.10.0,<5.0.0",
"click>=8.0.3,<9.0.0",
"cryptography>=39.0.1",
"lxml>=5.0.0",
"pyelftools>=0.27,<0.28",
"pyftype>=1.2.4,<2.0.0",
"colorlog>=6.7.0,<7.0.0",
]
requires-python = ">=3.8,<4.0.0"
[project.urls]
Repository = "https://gitee.com/kin9-0rz/apkutils"
[project.scripts]
apkutils = 'apkutils.cli:main'
[tool]
[tool.rye]
managed = true
dev-dependencies = ["pytest>=8.3.3", "pytest-benchmark>=4.0.0"]
[tool.hatch]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/apkutils"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]