-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (74 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (74 loc) · 1.88 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlx_distributed"
version = "0.1.0"
description = "Distributed training with MLX for Apple Silicon"
readme = "README.md"
authors = [
{ name = "Jarrod Barnes", email = "jbarnes850@gmail.com" }
]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: MacOS :: MacOS X",
]
requires-python = ">=3.11,<3.12"
dependencies = [
"mlx>=0.20.0",
"numpy>=1.24.0",
"transformers>=4.36.0",
"safetensors>=0.4.0",
"datasets>=2.15.0",
"torch>=2.1.0",
"mpi4py>=3.1.0",
"paramiko>=3.3.0",
"pyzmq>=25.1.0",
"asyncssh>=2.14.0",
"iperf3>=0.1.11",
"aiofiles>=23.2.0",
"aiosqlite>=0.19.0",
"xxhash>=3.4.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.5.0",
"psutil>=5.9.0",
"plotly>=5.18.0",
"dash>=2.14.0",
"dash-core-components>=2.0.0",
"dash-html-components>=2.0.0",
"pandas>=2.1.0",
"tqdm>=4.66.0",
"pyyaml>=6.0.0",
"metal-sdk>=2.5.0",
"huggingface-hub>=0.19.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.11.0",
"isort>=5.12.0",
"mypy>=1.7.0",
"pylint>=3.0.0",
"types-PyYAML>=6.0.0",
"types-tqdm>=4.65.0",
"types-paramiko>=3.5.0.20240918",
"types-psutil>=5.9.0",
"types-aiofiles>=23.2.0",
]
docs = [
"sphinx>=7.2.0",
"sphinx-rtd-theme>=1.3.0",
"sphinx-autodoc-typehints>=1.25.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*", "configs*", "scripts*"]