generated from axioma-ai-labs/python-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
85 lines (76 loc) · 1.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nevron"
version = "0.1.0"
authors = []
description = "Nevron AI Agent"
readme = "README.md"
keywords = ["agent", "ai"]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: GNU General Public License v3.0",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"loguru>=0.7.2",
"numpy>=1.26.0",
"openai>=1.3.0",
"pyyaml>=6.0.1",
"rapidfuzz>=3.5.0",
"python-telegram-bot>=20.7",
"telegramify-markdown>=0.11.0",
"tweepy>=4.14.0",
"pillow>=10.1.0",
"lxml-html-clean>=0.2.12",
"requests-html>=0.10.0",
"qdrant-client[http]>=1.6.0",
"mkdocs>=1.5.3",
"mkdocs-material>=9.4.14",
"mkdocs-macros-plugin>=1.0.4",
"mkdocs-awesome-pages-plugin>=2.9.2",
"anthropic>=0.7.0",
"chromadb>=0.4.18"
]
[project.optional-dependencies]
dev = [
"mypy>=1.7.0",
"isort>=5.12.0",
"ruff>=0.1.6",
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-cov>=4.1.0"
]
[project.urls]
Homepage = "https://github.com/axioma-ai-labs/nevron"
Documentation = "https://nevron.ai"
[tool.mypy]
# Paths to search for import modules, including stubs.
mypy_path = ["stubs"]
# Treats missing imports as errors.
ignore_missing_imports = true
# Runs type checking on all files, even those without type hints.
check_untyped_defs = true
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
env = [
"ENVIRONMENT=ci",
]
filterwarnings = [
"ignore::DeprecationWarning"
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true