-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
56 lines (45 loc) · 1.26 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
50
51
52
53
54
55
56
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "council-ai"
version = "0.0.29"
description = "Council is an open-source framework for the rapid development and robust deployment of customized generative AI applications"
readme = "README.md"
requires-python = ">=3.9"
authors = []
license = "Apache-2.0"
dynamic = ["dependencies"]
[project.urls]
Source = "https://github.com/chain-ml/council"
Documentation = "https://council.dev"
[tool.hatch.build]
include = [
"council/**/*.py",
"council/py.typed",
"council/**/*.yaml",
]
package = ['council_ai']
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.black]
line-length = 120
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_cli_format="[%(asctime)s %(levelname)s %(threadName)s %(name)s:%(funcName)s:%(lineno)s] %(message)s"
log_cli_date_format="%Y-%m-%d %H:%M:%S%z"
[tool.ruff]
exclude = ["__init__.py", "docs"]
line-length = 120
[tool.mypy]
exclude = "(?x)(venv|docs)"
mypy_path= "./stubs"
explicit_package_bases = "true"
[tool.isort]
profile = "black"
line_length = 120
py_version=39
src_paths = ["src"]
skip = ["__init__.py"]
skip_glob = ["**/venv/*", "**/docs/*", "**/stubs/*", "**/tests/*"]