-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 958 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 958 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vibepython"
dynamic = ["version"]
authors = [{ name = "OldTyT" }]
description = "🚀 Python vibe: Unleash the Magic of AI-Powered Coding Wizardry! 🌟"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"openai>=1.56.0,<2.0.0",
"loguru>=0.7.0,<1.0.0",
"pydantic>=2.8.0,<3.0.0",
"pydantic-settings>=2.4.0,<3.0.0",
"pydantic_core>=2.20.0,<3.0.0",
"g4f[slim]>=0.6.0.1,<0.7.0.0"
]
# features = ["all"]
[tool.hatch.version]
path = "vibepython/__init__.py"
[project.scripts]
vibepython = "vibepython.main:main"
[project.urls]
"Homepage" = "https://github.com/oldtyt/vibepython"
"Source" = "https://github.com/oldtyt/vibepython"
[tool.hatch.build]
exclude = [
"/resources",
]