-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "openai-for-ai"
version = "0.1.0"
description = "An automation tool to convert the latest OpenAI API spec in YAML to a format more suitable for consumption by LLMs"
authors = [
{name = "B.T. Franklin", email = "brandon.franklin@gmail.com"},
]
dependencies = [
"click>=8.3.1",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"pyyaml>=6.0.3",
"markupsafe>=3.0.3",
]
requires-python = ">=3.12"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
]
[project.urls]
Homepage = "https://github.com/btfranklin/openai-for-ai"
Issues = "https://github.com/btfranklin/openai-for-ai/issues"
Changelog = "https://github.com/btfranklin/openai-for-ai/releases"
Repository = "https://github.com/btfranklin/openai-for-ai.git"
[project.scripts]
openai-for-ai = "openai_for_ai.cli:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.14.11",
]
[tool.pdm.scripts]
test = "pytest"
lint = "ruff check src tests"
[tool.ruff.lint]
select = ["E", "F", "W"]