-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 1.01 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
[build-system]
requires = ["setuptools >= 61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
[project]
name = "namedpipe"
description = "Cross-platform named pipe manager"
readme = "README.md"
keywords = ["utility"]
license = { text = "GPL-2.0 License" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = []
[project.urls]
Repository = "https://github.com/python-ffmpegio/python-namedpipe"
Issues = "https://github.com/python-ffmpegio/python-namedpipe/issues"
Pull_Requests = "https://github.com/python-ffmpegio/python-namedpipe/pulls"
[tool.setuptools.dynamic]
version = { attr = "namedpipe.__version__" }