-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.11 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tracestorm"
version = "0.0.3"
description = "A tool for generating and replaying traces of requests to OpenAI API endpoints"
readme = "README.md"
authors = [
{name = "Yao Fu", email = "[email protected]"}
]
dependencies = [
"datasets>=3.3.2",
"openai>=1.58.0",
"numpy>=1.26.4",
"pandas>=2.2.3",
"requests>=2.31.0",
"seaborn>=0.13.2",
"matplotlib>=3.9",
"click>=8.1.8"
]
requires-python = ">=3.9"
[project.scripts]
tracestorm = "tracestorm.cli:main"
[tool.ruff]
line-length = 80
exclude = []
[tool.ruff.lint]
fixable = ["ALL"]
unfixable = [
"F405", # star imports
"F403", # lambda expression assignment
"E731", # Loop control variable not used within loop body
"B007", # raise distinguish errors
"B904", # f-string format
"UP032",
]
select = ["I"] # isort
ignore = ["B007"] # Loop control variable not used within loop body
[tool.isort]
use_parentheses = true
skip_gitignore = true
[tool.setuptools]
packages = { find = { exclude = ["examples"] } }