From fe104a2ee413675e9fa1b7e6eff4de890dbce3f3 Mon Sep 17 00:00:00 2001 From: AScriver <34779562+AScriver@users.noreply.github.com> Date: Sat, 9 Nov 2024 01:54:55 -0700 Subject: [PATCH] pyproject updates for pypi --- pyproject.toml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 01a1053..af287a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,24 @@ build-backend = "maturin" [project] name = "process_memory_writer" -requires-python = ">=3.8" +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"]