-
Notifications
You must be signed in to change notification settings - Fork 778
/
pyproject.toml
47 lines (42 loc) · 1.27 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "drozer"
dynamic = ["version"]
dependencies = ["protobuf>=4.25.2",
"pyopenssl>=22.0.0",
"twisted>=18.9.0",
"service-identity",
"distro",
"pyyaml",
"requests"]
requires-python = ">=3.8"
authors = [
{ name = "WithSecure", email = "drozer@withsecure.com" },
]
description = "The Leading Android Security Testing Framework"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ['drozer', 'android', 'security', 'framework']
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Security",
]
[project.urls]
Homepage = "https://labs.withsecure.com/tools/drozer/"
Documentation = "https://labs.withsecure.com/tools/drozer/"
Repository = "https://github.com/WithSecureLabs/drozer.git"
Issues = "https://github.com/WithSecureLabs/drozer/issues"
[project.scripts]
drozer = "drozer.main:main"
drozer-repository = "drozer.repoman.main:main"
drozer-complete = "drozer.autocomplete:main"
[tool.setuptools.package-dir]
drozer = "src/drozer"
WithSecure = "src/WithSecure"
pysolar = "src/pysolar"
[tool.setuptools.dynamic]
version = { attr = "drozer.__version__" }