-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
49 lines (47 loc) · 1.12 KB
/
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
48
49
[project]
name = "ramalama"
version = "0.1.1"
dependencies = [
"argcomplete",
"tqdm",
]
requires-python = ">= 3.8"
maintainers = [
{ name="Dan Walsh", email = "dwalsh@redhat.com" },
{ name="Eric Curtin", email = "ecurtin@redhat.com" },
]
description = "RamaLama is a command line tool for working with AI LLM models."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["ramalama", "llama", "AI"]
[project.urls]
Homepage = "https://github.com/containers/ramalama"
Documentation = "https://github.com/containers/ramalama/tree/main/docs"
Repository = "https://github.com/containers/ramalama"
Issues = "https://github.com/containers/ramalama/issues"
[tool.black]
line-length = 100
skip-string-normalization = true
preview = true
target-version = ["py36"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| \.history
| build
| dist
| docs
| hack
)/
'''
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"