mirror of
https://github.com/0x5t4l1n/Keylogger.git
synced 2026-05-26 11:35:50 +00:00
Add packaging workflow and update release workflow with artifacts
Co-authored-by: Stalin-143 <161853795+Stalin-143@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "keylogger-educational"
|
||||
version = "1.0.0"
|
||||
description = "Educational keylogger project for cybersecurity learning"
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
requires-python = ">=3.7"
|
||||
authors = [
|
||||
{name = "Stalin-143"}
|
||||
]
|
||||
keywords = ["keylogger", "educational", "cybersecurity", "security"]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Education",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Topic :: Education",
|
||||
"Topic :: Security",
|
||||
]
|
||||
dependencies = [
|
||||
"pynput>=1.7.6",
|
||||
"Flask>=2.2.5",
|
||||
"requests>=2.32.4",
|
||||
"python-dotenv>=1.0.0",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/Stalin-143/Keylogger"
|
||||
Repository = "https://github.com/Stalin-143/Keylogger"
|
||||
Issues = "https://github.com/Stalin-143/Keylogger/issues"
|
||||
|
||||
[project.scripts]
|
||||
keylogger = "src.keylogger:main"
|
||||
keylogger-server = "src.server:main"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["."]
|
||||
include = ["src*", "config*"]
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
"*" = ["*.json", "*.example"]
|
||||
Reference in New Issue
Block a user