-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 996 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
28
29
30
31
32
33
34
35
36
37
[project]
name = "streamview"
version = "1.0.0"
description = "Zero-copy non-blocking pipe-like structure"
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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
keywords = ["Pipe", "Structure", "Python"]
urls = { Homepage = "https://github.com/hpca-uji/streamview", Repository = "https://github.com/hpca-uji/streamview.git" }
requires-python = ">=3.13"
[project.optional-dependencies]
fast = [
"sabctools>=9.3.0"
]
[build-system]
requires = [
"setuptools>=68.2.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = [
"streamview",
"streamview.*"
]