-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (52 loc) · 1.06 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
52
53
54
55
56
57
58
59
[project]
version = "0.0.2"
name = "furious-api"
description = "From FastAPI to Fast-and-furiousAPI"
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "Serhii Karelov", email = "[email protected]"}
]
requires-python = ">=3.11"
dependencies = [
"asgi-lifespan>=2.1.0",
"fastapi>=0.115.4",
"ptpython>=3.0.29",
"typer>=0.12.5",
"uvicorn>=0.32.0",
]
[project.urls]
Homepage = "https://github.com/serhii-karelov/furious-api"
Repository = "https://github.com/serhii-karelov/furious-api"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
furious = "furious.cli.bin.furious:tpr"
[project.optional-dependencies]
bpython = [
"bpython>=0.24",
]
ipython = [
"ipython>=8.29.0",
]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = [
"I",
]
# Add the `line-too-long` rule to the enforced rule set.
extend-select = ["E501"]
[dependency-groups]
test = [
"pytest>=8.3.3",
]
lint = [
"ruff>=0.7.2",
]
dev = [
"pre-commit>=4.0.1",
"pytest>=8.3.3",
"ruff>=0.7.2",
]