-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.29 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
[build-system]
requires = [
"setuptools>=65",
]
build-backend = "setuptools.build_meta"
[project]
name = "viur-assistant"
dynamic = ["version"]
dependencies = [
"viur-core>=3.7.0",
"anthropic~=0.52",
"openai~=1.82",
]
requires-python = ">=3.11"
authors = [
{ name = "Andreas H. Kelch", email = "ak@mausbrand.de" },
{ name = "Sven Eberth", email = "se@mausbrand.de" },
]
maintainers = [
{ name = "Sven Eberth", email = "se@mausbrand.de" },
]
description = "AI-based assistance module plugin for ViUR"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["viur", "plugin", "backend", "ai", "assistant"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
testing = [
"pycodestyle",
"pytest",
]
[tool.setuptools.dynamic]
version = { attr = "viur.assistant.version.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Repository = "https://github.com/viur-framework/viur-assistant.git"
"Bug Tracker" = "https://github.com/viur-framework/viur-assistant/issues"