-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.67 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
59
60
[tool.poetry]
name = "duohub"
version = "2.2.0"
description = "duohub retriever package for querying memories"
authors = ["Oseh Mathias <o@matmail.me>"]
license = "ISC"
readme = "README.md"
homepage = "https://github.com/duohub-ai/duohub-py"
repository = "https://github.com/duohub-ai/duohub-py"
documentation = "https://github.com/duohub-ai/duohub-py#readme"
keywords = ["duohub", "graphrag", "voiceai", "rag", "retrieval", "chatbot"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
httpx = "^0.27.2"
tqdm = "^4.67.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
black = "^24.10.0"
flake8 = "^7.1.1"
mypy = "^1.12.0"
isort = "^5.13.2"
python-semantic-release = "^9.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/duohub-ai/duohub-py/issues"
[tool.semantic_release]
version_variable = [
"src/duohub/__init__.py:__version__",
"pyproject.toml:tool.poetry.version"
]
branch = "main"
upload_to_repository = false
upload_to_pypi = false
build_command = "pip install poetry && poetry build"
commit_message = "chore(release): bump version to {version}"
commit_author = "github-actions <actions@github.com>"
hvcs = "github"
tag_format = "v{version}"
major_on_zero = false