-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
41 lines (36 loc) · 1.08 KB
/
pyproject.toml
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
[tool.poetry]
name = "Pymem"
version = "1.14.0"
description = "python memory access made easy"
authors = ["Fabien Reboia <srounet@gmail.com>"]
license = "MIT"
readme = "PYPI-README.md"
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
repository = "https://github.com/srounet/Pymem"
documentation = "https://pymem.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
regex = {version = "2024.9.11", optional = true}
[tool.poetry.extras]
speed = ["regex"]
[tool.poetry.group.doc.dependencies]
sphinx = "4.4.0"
recommonmark = "0.7.1"
sphinx-rtd-theme = "1.0.0"
[tool.poetry.group.test.dependencies]
codecov = "^2.1.12"
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
twine = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"