-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 911 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
[project]
name = "pynotify-mcriley821"
version = "0.0.2"
authors = [
{ name="mcriley821" },
]
maintainers = [
{ name="mcriley821" },
]
description = "PyNotify is an async Python interface to the Linux inotify API."
readme = "README.rst"
license-files = [
"UNLICENSE"
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Filesystems"
]
keywords = ["inotify", "async", "asyncio", "monitor", "file monitor"]
[project.urls]
Homepage = "https://github.com/mcriley821/pynotify"
Documentation = "https://mcriley821.github.io/PyNotify/build/html/index.html"
Issues = "https://github.com/mcriley821/pynotify/issues"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"