-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
58 lines (53 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
54
55
56
57
58
[project]
name = "karma"
version = "0.1.0"
description = "Let your repo have karma — dev-cycle memory for any codebase"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
authors = [{name = "vedicreader", email = "vedicreader@users.noreply.github.com"}]
keywords = ["nbdev", "jupyter", "fastcore", "memory", "agent"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
dependencies = [
"litesearch>=0.0.14",
"codesigs>=0.0.2",
"watchfiles>=0.21",
"orjson>=3.9",
"fastcore>=1.7",
"pyskills",
"ghapi>=1.0",
]
[project.entry-points.pyskills]
karma = "karma.skill"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["karma"]
[tool.nbdev]
repo = "karma"
lib_name = "karma"
lib_path = "karma"
nbs_path = "nbs"
doc_path = "_docs"
user = "vedicreader"
author = "vedicreader"
author_email = "vedicreader@users.noreply.github.com"
description = "Let your repo have karma — dev-cycle memory for any codebase"
keywords = "nbdev jupyter fastcore memory agent"
license = "apache2"
status = "3"
min_python = "3.10"
readme_nb = "index.ipynb"
branch = "main"
[dependency-groups]
dev = [
"nbdev>=2.3",
"jupyter>=1.0",
"lisette",
]