forked from ghostofpokemon/llm-deepseek
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (34 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (34 loc) · 1.08 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
[project]
name = "llm-deepseek-ya"
version = "1.0.0"
description = "Yet another LLM access to DeepSeek's API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = ["llm", "httpx"]
authors = [{ name = "Josip Delic" }]
[project.urls]
Homepage = "https://github.com/delijati/llm-deepseek-ya"
Issues = "https://github.com/delijati/llm-deepseek-ya/issues"
CI = "https://github.com/delijati/llm-deepseek-ya/actions"
[project.entry-points.llm]
deepseek = "llm_deepseek"
[project.optional-dependencies]
test = ["pytest", "pytest-httpx", "pytest-recording"]
dev = ["ruff"]
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.setuptools]
py-modules = ["llm_deepseek"]
[tool.ruff]
# Same as flake8 max-line-length
line-length = 88
[tool.ruff.lint]
# E501 - line too long (handled by formatter)
# E203 - whitespace before ':' (conflicts with black)
ignore = ["E501", "E203"]
# Enable pycodestyle (E, W), pyflakes (F), and mccabe (C) rules
select = ["E", "W", "F", "C90"]
[tool.ruff.lint.mccabe]
# Equivalent to flake8's max-complexity
max-complexity = 15