-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
28 lines (26 loc) · 888 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyawaitable"
description = "Call asynchronous code from an extension module."
authors = [
{ name = "Peter Bierma", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"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",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = []
dynamic = ["version"]
[project.urls]
Documentation = "https://awaitable.zintensity.dev"
Issues = "https://github.com/ZeroIntensity/pyawaitable/issues"
Source = "https://github.com/ZeroIntensity/pyawaitable"