-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (25 loc) · 895 Bytes
/
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
[build-system]
requires = ['setuptools>=61.0', 'numpy>=1.26']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['memory']
[project]
name = "py-sharedmemory"
authors = [{name = "Tobias Würth"}]
version = "1.0.0"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.26"
]
description = "Shared Memory Pipe for Fast Multiprocessing Data Sharing of Large Objects (>1MB)"
keywords = ["python", "python3", "multiprocessing", "sharedmemory", "queue", "pipe"]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/tobiaswuerth/python_shared_memory_queue"
"Bug Tracker" = "https://github.com/tobiaswuerth/python_shared_memory_queue/issues"