forked from kpdebree/openai-chatbot-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 987 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openai-chatbot-memory"
version = "0.1.0"
description = "A self-hosted memory system for AI chatbots with privacy features"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
]
[project.urls]
"Homepage" = "https://github.com/your-username/openai-chatbot-memory"
"Bug Tracker" = "https://github.com/your-username/openai-chatbot-memory/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = [
"--import-mode=importlib",
"-v",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
]
[tool.coverage.run]
source = ["memory", "security"]
omit = ["tests/*", "**/__init__.py"]
[tool.black]
line-length = 88