-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 loc) · 1.01 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
46
47
48
49
50
51
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "rate_limited"
version = "0.4.0"
authors = [
{ name="Tomasz Pietruszka", email="[email protected]" },
]
description = "Use slow, rate-limited APIs - like those of Large Language Models - as efficiently as possible"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/tpietruszka/rate_limited"
"Bug Tracker" = "https://github.com/tpietruszka/rate_limited/issues"
[project.optional-dependencies]
progress = [
"tqdm",
]
test = [
"pytest",
"pytest-xdist",
"pytest-timeout",
"pytest-asyncio",
"aiohttp",
"requests",
]
lint = [
"black",
"isort",
"flake8",
"flake8-isort",
"mypy",
"types-requests",
"types-tqdm",
"aiohttp",
]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"