-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
73 lines (62 loc) · 1.46 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
# pyproject.toml
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
'versioneer[toml]',
'tomli; python_version < "3.11"',
]
[project]
dependencies = [
"fastapi==0.109.0",
"uvicorn==0.27.0",
"websocket-client==1.7.0",
"click==8.1.7",
"dashscope==1.14.1",
"psutil==5.9.8",
]
description = 'LLM unified server'
name = 'delibird'
readme = "README.md"
dynamic = ["version"]
[project.urls]
"Bug Tracker" = "https://github.com/EeroEternal/delibird/issues"
"Homepage" = "https://github.com/EeroEternal/delibird"
[project.scripts]
delibird = "delibird.cli:cli"
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/delibird/_version.py"
versionfile_build = "delibird/_version.py"
tag_prefix = ""
parentdir_prefix = "delibird-"
[tool.pytest.ini_options]
pythonpath = [".", "src"]
[tool.isort]
profile = 'black'
[tool.pylint]
jobs = 2
[tool.black]
line-length = 88
target-version = ['py310', 'py311']
# We use preview style for formatting Black itself. If you
# want stable formatting across releases, you should keep
# this off.
exclude = '''
/(
\.eggs
| \.git
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
preview = true