-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1020 Bytes
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1020 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "depth-armory"
authors = [{name = "Dan Lawson", email = "dlawson@depthsecurity.com"}]
readme = "Readme.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
dynamic = ["version", "description"]
dependencies = [
"argcomplete",
"pillow",
"configparser",
#"distutils",
"dnspython",
"Django",
"django-q2",
"fuzzywuzzy",
"ipaddr",
"ipython",
#"mysqlclient",
"netaddr",
"numpy",
"pyperclip",
"requests",
"selenium",
"tld",
"urllib3",
"xmltodict",
"opencv-python-headless",
"tldextract",
"whoisit",
]
[project.scripts]
armory = "armory2.armory_cmd:main"
armory-manage = "armory2.manage:main"
armory-shell = "armory2.shell:main"
armory-web = "armory2.manage:web"
armory-init = "armory2.manage:init"
armory-docker = "armory2.manage:docker"
[tool.flit.module]
name = "armory2"
[tool.setuptools.package-data]
"armory2.armory_main.fonts" = ["*.ttf"]
[project.urls]
Home = "https://github.com/depthsecurity/armory"