-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (73 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "api2ai"
version = "0.1.0"
description = "Transform any API into an AI-ready tool"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["api", "ai", "nlp", "tools"]
authors = [
{ name = "API2AI Contributors" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastapi>=0.104.1",
"uvicorn>=0.24.0",
"pydantic>=2.5.2",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"openai>=1.3.7",
"sqlalchemy>=2.0.23",
"alembic>=1.12.1",
"pyyaml>=6.0.1",
"jinja2>=3.1.2",
"python-multipart>=0.0.6",
"aiohttp>=3.9.1",
"tenacity>=8.2.3",
"structlog>=23.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-cov",
"black>=23.11.0",
"isort>=5.12.0",
"mypy>=1.7.1",
"ruff>=0.1.6",
"httpx>=0.25.2",
]
[project.urls]
Homepage = "https://github.com/yourusername/api2ai"
Documentation = "https://api2ai.readthedocs.io/"
Repository = "https://github.com/yourusername/api2ai.git"
"Bug Tracker" = "https://github.com/yourusername/api2ai/issues"
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
[tool.ruff]
select = ["E", "F", "B", "I"]
ignore = ["E501"]
line-length = 88
target-version = "py39"