-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 879 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "process_memory_writer"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version"]
description = "A library for writing to process memory"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Austin Scriver", email = "34779562+AScriver@users.noreply.github.com" }
]
keywords = ["memory", "process", "automation", "windows"]
[tool.maturin]
features = ["pyo3/extension-module"]