-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
88 lines (78 loc) · 2.35 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "forgellm"
version = "0.4.7"
description = "A comprehensive toolkit for end-to-end continued pre-training, fine-tuning, monitoring, testing and publishing of language models with MLX-LM"
readme = "README.md"
authors = [
{name = "Laurent-Philippe Albou", email = "lpalbou@gmail.com"}
]
license = {text = "MIT"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["llm", "language-models", "machine-learning", "mlx", "mlx-lm", "fine-tuning", "pre-training"]
dependencies = [
"mlx-lm>=0.0.3",
"mlx>=0.0.7",
"numpy>=1.20.0",
"flask>=2.0.0",
"flask-socketio>=5.0.0",
"plotly>=5.0.0",
"psutil>=5.8.0",
"huggingface-hub>=0.12.0",
"matplotlib>=3.4.0",
"filelock>=3.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0.0",
"black>=22.0.0",
"isort>=5.0.0",
"mypy>=0.900",
"build>=0.10.0",
"twine>=4.0.0",
]
[project.urls]
"Homepage" = "https://github.com/lpalbou/forgellm"
"Bug Tracker" = "https://github.com/lpalbou/forgellm/issues"
"Documentation" = "https://github.com/lpalbou/forgellm/tree/main/docs"
"Source Code" = "https://github.com/lpalbou/forgellm"
[project.scripts]
forgellm = "forgellm.__main__:main"
forgellm-cli = "forgellm.cli.main:main"
forgellm-server = "forgellm.server.main:main"
forgellm-web = "forgellm.web.main:main"
[tool.setuptools]
include-package-data = true
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["forgellm*"]
namespaces = true
[tool.setuptools.package-data]
"forgellm.web" = ["templates/*", "static/**/*"]
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true