-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (76 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
89 lines (76 loc) · 1.78 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
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "sinapsis-data-tools"
version = "0.2.31"
description = "Module that contains different packages to perform data-related operations through Sinapsis templates."
authors = [{ name = "SinapsisAI", email = "dev@sinapsis.tech" }]
dependencies = [
"sinapsis>=0.1.1",
]
requires-python = ">=3.10"
readme = "README.md"
license-files = ["LICENSE"]
[project.optional-dependencies]
gradio-app = [
"sinapsis[webapp]>=0.2.3",
"pandas>=2.2.3",
]
all = [
"sinapsis-data-analysis",
"sinapsis-data-writers[all]",
"sinapsis-data-readers[all]",
"sinapsis-data-visualization[all]",
"sinapsis-generic-data-tools[all]",
]
[tool.uv.workspace]
members = ["packages/*"]
exclude = ["packages/*.egg-info"]
[tool.uv.sources]
sinapsis-data-analysis = { workspace = true }
sinapsis-data-writers = { workspace = true }
sinapsis-data-readers = { workspace = true }
sinapsis-data-visualization = { workspace = true }
sinapsis-generic-data-tools = { workspace = true }
[tool.ruff]
lint.select = [
"ARG",
"ANN",
"BLE",
"C4",
"E",
"F",
"FIX",
"FLY",
"I",
"PERF",
"PIE",
"RUF",
"RSE",
"SIM",
"SLOT",
"T10",
"T20",
"TD",
"TID",
]
lint.ignore = ['ANN401']
line-length = 120
show-fixes = true
[dependency-groups]
dev = [
"ruff>=0.8.3",
"pre-commit>=4.0.1",
"ty>=0.0.31",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { where = ["packages"] } }
[[tool.uv.index]]
name = "sinapsis"
url = "https://pypi.sinapsis.tech/"
[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-data-tools.git"