-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (41 loc) · 1.37 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=64"]
[project]
name = "aiologic"
version = "0.12.0"
authors = [
{name = "Ilya Egorov", email = "[email protected]"},
]
description = "GIL-powered* locking library for Python"
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: ISC License (ISCL)",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"Framework :: Trio",
"Framework :: AnyIO",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
trio = ["trio>=0.23.0"]
anyio = ["anyio>=3.0.0"]
gevent = ["gevent>=21.1.0"]
sniffio = ["sniffio>=1.3.0"]
eventlet = ["eventlet>=0.15.1"]
[project.urls]
Source = "https://github.com/x42005e1f/aiologic"
[tool.black]
line-length = 79