forked from darkshapes/zodiac
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
149 lines (127 loc) · 3.96 KB
/
pyproject.toml
File metadata and controls
149 lines (127 loc) · 3.96 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "darkshapes", email = "91800957+exdysa@users.noreply.github.com" },
]
description = "Multimodal generative media sequencer"
license = { file = "LICENSE" }
name = "zodiac"
readme = "README.md"
requires-python = ">=3.11"
version = "0.0.2"
keywords = ["ML", "AI", "TUI", "no-code", "diffusion", "LLM", "torch"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Editors",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Multimedia :: Video :: Display",
"Topic :: Multimedia :: Video :: Non-Linear Editor",
]
dependencies = [
"dspy>=2.6.27",
"litellm>=1.72.0",
"tokenizers==0.21.2", #force for non linux
"networkx>=3.5",
"sounddevice>=0.5.2",
"soundfile>=0.13.1",
"nnll[dev] @ git+https://github.com/darkshapes/nnll@0.1.dev799",
"tiktoken>=0.9.0",
"viztracer>=1.0.4",
"matplotlib>=3.10.3",
"toga>=0.5.1",
"pyperclip>=1.9.0",
"ftfy>=6.3.1",
]
[dependency-groups]
dev = [
"matplotlib>=3.10.3",
"pytest>=8.4.0",
"pytest-asyncio>=1.0.0",
"ruff>=0.11.12",
"nnll[dev] @ git+https://github.com/darkshapes/nnll@main",
"zodiac[full,console]",
]
[project.optional-dependencies]
mps = ["nnll[mps]@ git+https://github.com/darkshapes/nnll@main"]
cuda = ["nnll[cuda ]@ git+https://github.com/darkshapes/nnll@main"]
console = [
# "toga-textual>=0.5.1",
"textual-dev>=1.7.0",
"textual-plotext>=1.0.1",
"textual[syntax]>=3.3.0",
]
toga = ["toga>=0.5.1"]
full = ["zodiac[toga]"]
dev = [
"matplotlib>=3.10.3",
"pytest>=8.4.0",
"pytest-asyncio>=1.0.0",
"ruff>=0.11.12",
"nnll[dev] @ git+https://github.com/darkshapes/nnll@0.1.dev799",
"zodiac[full,console]",
]
[project.urls]
Homepage = "https://github.com/darkshapes/zodiac"
Documentation = "https://github.com/darkshapes/sdbx/wiki"
[project.scripts]
zdac = "zodiac.toga.__main__:main"
zdac-pool = "zodiac.providers.pools:generate_pool"
zodiac = "zodiac.toga.__main__:main"
[tool.setuptools]
packages = ["zodiac"]
[tool.uv]
preview = true
prerelease = "allow"
conflicts = [
[
{ extra = "torch" },
{ extra = "mps" },
{ extra = "cuda" },
{ extra = "xpu" },
{ extra = "rocm" },
],
]
[tool.ruff]
line-length = 140
include = ["*.py"]
extend-exclude = ["^tests/.*$", "test.*$"]
# [tool.ruff.format]
# exclude = ["*.py"]
[tool.pylint]
max-line-length = 140
ignore-paths = ["^tests/.*$", "test_.*$"]
[tool.pylint.messages_control]
disable = ["C0415"]
[tool.ruff.lint]
ignore = ["E731"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.pycodestyle]
max-line-length = 140
ignore-overlong-task-comments = true
[tool.typos]
files.extend-exclude = ["^tests/.*$", "test.*$"]
default.extend-words = { "ot" = "ot" }
[tool.uv.sources]
nnll = { git = "https://github.com/darkshapes/nnll", rev = "0.1.dev799" }