AiActivity commited on
Commit
a77e3f9
1 Parent(s): d47802a

Delete pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +0 -89
pyproject.toml DELETED
@@ -1,89 +0,0 @@
1
- [project]
2
- name = "anychat"
3
- version = "0.1.0"
4
- description = ""
5
- readme = "README.md"
6
- requires-python = ">=3.10"
7
- dependencies = [
8
- "anthropic-gradio",
9
- "cerebras-gradio",
10
- "dashscope-gradio",
11
- "fireworks-gradio",
12
- "gemini-gradio>=0.0.1",
13
- "gradio>=5.6.0",
14
- "groq-gradio>=0.0.2",
15
- "hyperbolic-gradio>=0.0.4",
16
- "mistral-gradio>=0.0.2",
17
- "nvidia-gradio",
18
- "openai-gradio>=0.0.4",
19
- "perplexity-gradio>=0.0.1",
20
- "sambanova-gradio>=0.1.9",
21
- "together-gradio>=0.0.1",
22
- "xai-gradio>=0.0.2",
23
- ]
24
-
25
- [tool.uv.sources]
26
- anthropic-gradio = { git = "https://github.com/AK391/anthropic-gradio.git" }
27
- fireworks-gradio = { git = "https://github.com/AK391/fireworks-ai-gradio.git" }
28
- cerebras-gradio = { git = "https://github.com/gradio-app/cerebras_gradio.git" }
29
- nvidia-gradio = { git = "https://github.com/AK391/nvidia-gradio.git" }
30
- dashscope-gradio = { git = "https://github.com/AK391/dashscope-gradio.git" }
31
-
32
- [tool.ruff]
33
- # Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
34
- select = ["E", "F"]
35
- ignore = ["E501"] # line too long (black is taking care of this)
36
- line-length = 119
37
- fixable = [
38
- "A",
39
- "B",
40
- "C",
41
- "D",
42
- "E",
43
- "F",
44
- "G",
45
- "I",
46
- "N",
47
- "Q",
48
- "S",
49
- "T",
50
- "W",
51
- "ANN",
52
- "ARG",
53
- "BLE",
54
- "COM",
55
- "DJ",
56
- "DTZ",
57
- "EM",
58
- "ERA",
59
- "EXE",
60
- "FBT",
61
- "ICN",
62
- "INP",
63
- "ISC",
64
- "NPY",
65
- "PD",
66
- "PGH",
67
- "PIE",
68
- "PL",
69
- "PT",
70
- "PTH",
71
- "PYI",
72
- "RET",
73
- "RSE",
74
- "RUF",
75
- "SIM",
76
- "SLF",
77
- "TCH",
78
- "TID",
79
- "TRY",
80
- "UP",
81
- "YTT",
82
- ]
83
-
84
- [tool.isort]
85
- profile = "black"
86
- line_length = 119
87
-
88
- [tool.black]
89
- line-length = 119