-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 920 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (34 loc) · 920 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "keytrace-lab"
version = "0.1.0"
description = "Local-only educational keyboard-event logger for malware-analysis learning"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["security", "education", "malware-analysis", "keylogger", "lab"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Education",
"Topic :: Security",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pynput>=1.7",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.scripts]
keytrace-lab = "keytrace_lab.main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
[tool.setuptools.packages.find]
where = ["."]
include = ["keytrace_lab*"]