forked from cedricbonhomme/pyHIDS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (43 loc) · 1.22 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
50
51
52
[tool.poetry]
name = "pyHIDS"
version = "0.6.2"
description = "A host-based intrusion detection system."
authors = ["Cédric Bonhomme <cedric@cedricbonhomme.org>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/cedricbonhomme/pyHIDS"
repository = "https://github.com/cedricbonhomme/pyHIDS"
keywords = ["hids", "security", "hashlookup", "integrity"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Security",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
include = [
"README.md",
"COPYING",
"conf.py",
"bin/*",
]
[tool.poetry.scripts]
pyhids = "bin.main:main"
[tool.poetry.dependencies]
python = "^3.11"
rsa = "^4.9"
pyhashlookup = "^1.2.1"
pypandora = "^1.5.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
mypy = "^1.4.1"
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"