Skip to content

Commit cb207a1

Browse files
author
walidsobhie-code
committed
Add pyproject.toml for PyPI packaging
1 parent 7b0349e commit cb207a1

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "ai-code-assistant"
7+
version = "0.1.0"
8+
description = "AI-powered coding assistant that understands YOUR codebase"
9+
readme = "README.md"
10+
license = "MIT"
11+
requires-python = ">=3.10"
12+
keywords = ["ai", "code-assistant", "llm", "codebase-search", "openai"]
13+
classifiers = [
14+
"Development Status :: 3 - Alpha",
15+
"Intended Audience :: Developers",
16+
"License :: OSI Approved :: MIT License",
17+
"Programming Language :: Python :: 3",
18+
"Topic :: Software Development :: Code Generators",
19+
]
20+
dependencies = [
21+
"openai>=1.0.0",
22+
"tiktoken>=0.5.0",
23+
"chromadb>=0.4.0",
24+
"gitpython>=3.1.0",
25+
"rich>=13.0.0",
26+
]
27+
28+
[project.urls]
29+
Homepage = "https://github.com/my-ai-stack/ai-code-assistant"
30+
Repository = "https://github.com/my-ai-stack/ai-code-assistant"

0 commit comments

Comments
 (0)