-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 2.17 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "entropia-riko"
version = "0.2.1"
description = "Professional node-graph deep-learning editor — ComfyUI-style visual workflows for PyTorch, with code export, training curves, plugins, and subgraphs."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT License" }
authors = [{ name = "Entropia Riko contributors" }]
keywords = ["pytorch", "deep-learning", "node-graph", "workflow", "comfyui", "fastapi", "codegen"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi>=0.110",
"uvicorn>=0.30",
"torch>=2.0",
"torchvision>=0.15",
"numpy>=1.24",
"safetensors>=0.4",
]
[project.optional-dependencies]
tf = ["tensorflow>=2.10"]
hf = ["diffusers>=0.25", "transformers>=4.36", "accelerate>=0.25", "safetensors>=0.4"]
[project.urls]
Homepage = "https://github.com/SakuraEntropia/Entropia-Riko"
Repository = "https://github.com/SakuraEntropia/Entropia-Riko"
Documentation = "https://github.com/SakuraEntropia/Entropia-Riko#readme"
[project.scripts]
entropia-riko = "entropia_riko.server.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["entropia_riko*"]
exclude = ["entropia_riko.ui*", "tests*"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
# E501: line length is handled by the formatter.
# UP006/UP035/UP045: keep `typing.List`/`Dict`/`Optional` spelling — both are
# readable and the repo is intentionally conservative here.
ignore = ["E501", "UP006", "UP035", "UP045"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["B011"] # tests intentionally assert against values
[tool.pytest.ini_options]
testpaths = ["tests"]