forked from Sinapsis-AI/sinapsis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (65 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (65 loc) · 1.23 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
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
[project]
name = "sinapsis"
version = "0.2.4"
description = "Modular and Universal AI platform"
authors = [
{name = "SinapsisAI", email = "dev@sinapsis.tech"},
]
dependencies = [
"sinapsis-core>=0.1.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"ruff>=0.9.10",
]
[project.scripts]
sinapsis = "sinapsis.bin.sinapsis_cli:main"
[project.optional-dependencies]
all = [
"sinapsis[dev]",
]
webapp = [
"gradio<=5.23",
]
[tool.ruff]
lint.select = [
"ARG",
"BLE",
"C4",
"E",
"F",
"FIX",
"FLY",
"I",
"PERF",
"PIE",
"RUF",
"RSE",
"SIM",
"SLOT",
"T10",
"T20",
"TD",
"TID",
]
line-length = 120
show-fixes = true
[tool.uv.sources]
sinapsis-core = { index = "sinapsis-core" }
[[tool.uv.index]]
name = "sinapsis-core"
url = "https://pypi.sinapsis.tech/"
[tool.setuptools]
license-files = []
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://sinapsis.tech"
Documentation = "https://docs.sinapsis.tech/docs"
Tutorials = "https://docs.sinapsis.tech/tutorials"
Repository = "https://github.com/Sinapsis-AI/sinapsis.git"