-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 836 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["ai_commit"]
[project]
name = "ai-gen-commit"
version = "0.1.2"
authors = [
{ name = "Yankee Maharjan" },
]
description = "AI generated commit messages!"
readme = "README.md"
keywords = ["ai commit", "commit ai", "ai generated commit", "llm commit", "generative ai commit"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
]
dependencies = [
"openai==1.99.9",
]
[dependency-groups]
dev = [
"ruff==0.12.2",
]
[project.urls]
Repository = "https://github.com/yankeexe/ai-gen-commit"
[project.scripts]
aic = "ai_commit.app:run"