-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.14 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
[project]
name = "net-queue"
version = "2.6.0"
description = "Zero-copy & lock-free network communications using queues"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [{ name = "Miguel Ángel Prosper", email = "mprosper@uji.es" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
keywords = ["Communication", "Protocol", "Python"]
urls = { Homepage = "https://github.com/hpca-uji/net-queue", Repository = "https://github.com/hpca-uji/net-queue.git" }
requires-python = "~=3.13"
dependencies = [
"bidict~=0.23",
"sabctools~=9.3",
"grpcio~=1.80",
"paho-mqtt~=2.1",
"streamview~=3.0"
]
[project.optional-dependencies]
test = [
"numpy~=2.4"
]
[build-system]
requires = [
"setuptools~=82.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = [
"net_queue",
"net_queue.*"
]