-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.35 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MemLib"
version = "1.7.6"
description = "Windows-only Python toolkit for process memory access, binary scanning, and ctypes-based Win32 helpers."
authors = [
{ name="Zvendson" }
]
readme = "README.md"
requires-python = ">=3.10"
license = { file="LICENSE" }
dependencies = [
"psutil ~=5.9.6",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
]
keywords = ["windows", "api", "ctypes", "memory", "keepass"]
[project.urls]
Homepage = "https://github.com/Zvendson/MemLib"
Repository = "https://github.com/Zvendson/MemLib"
Issues = "https://github.com/Zvendson/MemLib/issues"
[project.optional-dependencies]
keepass = [
"pykeepass ~=4.1.0",
]
test = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]