-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1001 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
40
41
42
43
44
45
46
47
[project]
name = "watch-bot"
dynamic = ["version"]
description = "Implementation of the watchbot, to control the behaviour of a LLM-based chatbot"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Francesco Calcavecchia", email = "[email protected]"}
]
maintainers = [
{name = "Francesco Calcavecchia", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python"
]
dependencies = [
"pydantic~=1.0",
"jinja2~=3.0",
"openai~=0.27",
]
# [project.urls]
# homepage = "https://example.com"
# documentation = "https://readthedocs.org"
# repository = "https://github.com"
# changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
# [project.scripts]
# cli-name = "py.file.path:function"
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120