-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (42 loc) · 1.45 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
43
44
45
[build-system]
requires = ["setuptools >= 77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "inopyutils"
version = "2.0.4"
authors = [
{ name = "Inoland", email = "contact@inoland.net" },
]
description = "Async Python utility library for S3 storage, HTTP client, media/audio processing, JSON/CSV, MongoDB, file management, logging, configuration, and AI endpoints (OpenAI-compatible, RunPod, CivitAI)"
readme = "README.md"
license = "MPL-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.12"
keywords = ["utilities", "s3", "async", "http", "media", "audio", "mongodb", "csv", "file-management", "logging", "configuration", "openai", "runpod", "civitai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"pillow>=12.0.0",
"pillow_heif>=1.1.1",
"aioboto3>=15.5.0",
"aiofiles>=25.1.0",
"aiohttp>=3.13.2",
"botocore>=1.39.11",
"boto3>=1.39.11",
"motor>=3.7.1",
"openai>=2.45.0"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["inopyutils*"]
[project.urls]
Homepage = "https://github.com/nobandegani/InoPyUtils"
Issues = "https://github.com/nobandegani/InoPyUtils/issues"