-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (46 loc) · 1.42 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deepbase"
# Increment the version to reflect changes
version = "1.8.1"
authors = [
{ name="Giuliano Ranauro", email="ranaurogln@email.com" },
]
description = "A CLI utility to consolidate project context for LLMs."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Utilities",
]
keywords = ["llm", "context", "developer-tool", "ai", "code-analysis", "deepbase"]
# Main project dependencies
dependencies = [
"typer[all]", # For a modern and robust CLI
"rich", # For colored output and progress bars
"tomli", # To read .toml configuration files
"chardet" # To reliably detect file encoding
]
[project.urls]
"Homepage" = "https://github.com/follen99/deepbase"
"Bug Tracker" = "https://github.com/follen99/deepbase/issues"
# Update the script to point to the Typer app object
[project.scripts]
deepbase = "deepbase.main:app"
# Optional dependencies for development (e.g., testing)
[project.optional-dependencies]
dev = [
"pytest",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.24.0",
]