-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 780 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 780 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 = "gitmit"
version = "0.6.1"
description = "Gitmit is a tool that helps you to manage your git repositories."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"GitPython>=3.1.44",
"google-genai>=1.57.0",
"mysql-connector-python>=9.2.0",
"ollama>=0.4.7",
"requests>=2.32.5",
"rich>=14.0.0",
"tiktoken>=0.9.0",
]
authors = [
{ name = "Caique Araujo", email = "caique@piggly.com.br" }
]
[project.scripts]
gitmit = "gitmit:main"
[dependency-groups]
dev = [
"pex>=2.33.7",
"basedpyright>=1.37.1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/gitmit"]
[tool.hatch.build.targets.wheel.sources]
"src" = ""
[tool.uv]
package = true