forked from Swind/pure-python-adb
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.14 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
[build-system]
requires = [
"setuptools>=64",
"setuptools-scm>=8"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["*.test", "*.test.*", "test.*", "test"]
[project]
name = "pure-python-adb-reborn"
maintainers = [
{name = "Sergio Martins"},
{name = "Andrew Butcher"},
]
description = "Pure python implementation of the adb client."
dynamic = [
"dependencies",
"version"
]
license = {text = "MIT"}
readme = "README.rst"
requires-python = ">= 3.12"
keywords = [
"adb",
"android",
"async",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
fallback_version=">0.3.0"
normalize=false
[project.urls]
Repository = "https://github.com/spm5065/pure-python-adb.git"
Issues = "https://github.com/spm5065/pure-python-adb/issues"
Changelog = "https://github.com/spm5065/pure-python-adb/blob/master/HISTORY.rst"