-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.26 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
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "AGISwarm.asyncio-queue-manager"
dynamic = ["version"]
description = "asyncio-queue-manager is a Python package that provides a robust and flexible solution for managing asynchronous queues in applications using asyncio. It offers an easy-to-use interface for handling task queues with advanced features such as priority scheduling, concurrency control, and error handling."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.txt" }
keywords = ["sample", "setuptools", "development"]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
'ulid-py',
'sortedcontainers',
]
[project.optional-dependencies]
test = ['pytest', 'pytest-asyncio']
analyze = ['pyright', 'pylint', 'bandit', 'black', 'isort']
build = ['setuptools', 'wheel', 'build']
publish = ['twine']
all = [
"agiswarm.asyncio-queue-manager[test]",
"agiswarm.asyncio-queue-manager[analyze]",
"agiswarm.asyncio-queue-manager[build]",
"agiswarm.asyncio-queue-manager[publish]",
]
[tool.setuptools.dynamic]
version = { file = "VERSION" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
asyncio_queue_manager = ["py.typed"]