-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.24 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "python-utils-toolkit"
version = "1.0.0"
description = "Production-ready Python utilities for trading bots and AI agents — retry, rate limiter, logger, cache, and more."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["utilities", "retry", "rate-limiter", "logger", "trading", "ai-agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [] # zero runtime dependencies — pure stdlib
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23"]
[project.urls]
Homepage = "https://github.com/Ghraven/python-utils-toolkit"
Repository = "https://github.com/Ghraven/python-utils-toolkit"
[tool.setuptools.packages.find]
where = ["."]
include = ["utils*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]