-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.24 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
[project]
name = "project-scriber"
version = "1.1.2"
authors = [
{ name="SunneV (Wojciech Mariusz Cichoń)", email="wojciech.m.cichon@gmail.com" },
]
description = "An intelligent tool to map, analyze, and compile project source code for LLM context."
readme = "README.md"
requires-python = ">=3.10"
license = { file="LICENSE" }
keywords = ["llm", "code-analysis", "developer-tools", "context-builder", "source-code"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"pathspec",
"python-dotenv",
"tiktoken",
"pyperclip",
"tomlkit",
"tomli; python_version < '3.11'",
]
[project.urls]
Homepage = "https://github.com/SunneV/ProjectScriber"
Issues = "https://github.com/SunneV/ProjectScriber/issues"
[project.scripts]
scriber = "scriber.cli:main"
[project.optional-dependencies]
rich = ["rich"]
dev = [
"pytest",
"pytest-mock",
"rich"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/scriber"]
[tool.pytest.ini_options]
pythonpath = [
"."
]