-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 945 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 945 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zaina-ml-forge"
version = "1.0.4"
description = "Visual Drag-and-drop Machine Learning Trainer"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
authors = [
{name = "zain-a"}
]
keywords = ["machine learning", "pytorch", "visual", "no-code"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"dearpygui>=1.11.0",
"Pillow>=9.0.0",
]
[project.optional-dependencies]
training = [
"torch>=2.0.0",
"torchvision>=0.15.0",
]
[tool.setuptools.package-data]
"ml_forge" = ["templates/*.mlf"]
[project.scripts]
ml-forge = "ml_forge.main:main"
[project.urls]
Homepage = "https://github.com/zaina-ml/ml_forge"