-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 970 Bytes
/
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
[tool.poetry]
name = "hardsploit"
version = "2.0.0"
description = "API for Hardsploit HW access"
authors = ["PERIES Mickaël <[email protected]>", "DUMAN Mazlum, <[email protected]>"]
license = "LGPL-3.0-only"
readme = "README.md"
homepage = "https://github.com/serma-safety-security/hardsploit"
documentation = "https://github.com/serma-safety-security/hardsploit/wiki"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
packages = [
{include = "hardsploit"}
]
include = [ {path = "data/50-Hardsploit.rules" }, { path = "examples/" }]
exclude = [".gitignore"]
[tool.poetry.dependencies]
python = ">=3.8"
colorama = "^0.4.6"
pyusb = "^1.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/serma-safety-security/hardsploit/issues"