forked from grapheneX/grapheneX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.42 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
[tool.poetry]
name = "GrapheneX"
version = "1.6.0"
description = "Automated System Hardening Framework for Linux & Windows"
authors = ["grapheneX contributors <[email protected]>"]
license = "GPL-3.0-or-later"
homepage = "https://graphenex.github.io"
repository = "https://github.com/grapheneX/grapheneX"
readme = "README.md"
keywords = ["hardening", "hardening-commands", "security"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
"Topic :: Utilities",
]
packages = [{ include = "graphenex" }]
include = [
"graphenex/modules.json",
"graphenex/core/web/static/css/*",
"graphenex/core/web/static/js/*",
"graphenex/core/web/static/images/*",
"graphenex/core/web/static/webfonts/*",
"graphenex/core/web/templates/*",
]
[tool.poetry.dependencies]
python = "^3.10"
flask = "2.0.3"
werkzeug = "2.0.3"
flask-socketio = "^4.2.1"
coloredlogs = "^15.0"
terminaltables = "^3.1.0"
pyinquirer = "^1.0.3"
psutil = "^5.9.8"
colorama = "^0.4.6"
[tool.poetry.dev-dependencies]
bumpversion = "^0.5.3"
[tool.poetry.scripts]
grapheneX = "graphenex.__main__:main"