Skip to content

Commit 6eb2805

Browse files
committed
wip
1 parent 171d0ad commit 6eb2805

File tree

2 files changed

+6
-42
lines changed

2 files changed

+6
-42
lines changed

pyproject.toml

Lines changed: 4 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,9 @@
1-
[build-system]
2-
requires = [ "hatchling",]
3-
build-backend = "hatchling.build"
4-
51
[project]
62
name = "recall-kit"
7-
version = "0.0.2"
8-
description = "Lightweight memory integration for LLMs"
3+
version = "0.0.1"
4+
description = "Add your description here"
95
readme = "README.md"
10-
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
11-
requires-python = ">=3.7"
126
dependencies = []
13-
[[project.authors]]
14-
name = "recall-kit contributors"
15-
email = "example@example.com"
16-
17-
[project.license]
18-
text = "MIT"
19-
20-
[project.optional-dependencies]
21-
dev = [ "pytest>=7.0.0", "pytest-cov>=4.0.0", "black>=23.0.0", "isort>=5.0.0",]
22-
23-
[project.urls]
24-
Homepage = "https://github.com/username/recall-kit"
25-
"Bug Tracker" = "https://github.com/username/recall-kit/issues"
26-
27-
[tool.black]
28-
line-length = 88
29-
target-version = [ "py37",]
30-
31-
[tool.isort]
32-
profile = "black"
33-
line_length = 88
34-
35-
[tool.pytest.ini_options]
36-
testpaths = [ "tests",]
37-
python_files = [ "test_*.py",]
38-
python_functions = [ "test_*",]
39-
40-
[tool.uv.python]
41-
requires-python = ">=3.7"
42-
43-
[tool.hatch.build.targets.wheel]
44-
packages = [ "recall_kit",]
457

46-
[tool.hatch.build.targets.sdist]
47-
include = [ "recall_kit", "tests", "README.md", "LICENSE",]
8+
[tool.uv]
9+
dev-dependencies = []

src/recall-kit/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello() -> str:
2+
return "Hello from recall-kit!"

0 commit comments

Comments
 (0)