-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 912 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
29
30
31
32
33
34
35
36
37
[project]
name = "requests-engine"
version = "0.1.1"
description = "A simple library for performing LLM batch inference using API requests. "
authors = [{ name = "EdoardoLuciani", email = "edoardo.luciani@gmail.com" }]
dependencies = ["aiohttp", "botocore", "google-auth", "requests"]
readme = "README.md"
requires-python = ">= 3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://github.com/EdoardoLuciani/requests_engine"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = ["pytest", "python-dotenv"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/requests_engine"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"