-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (41 loc) · 1006 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fabrique"
version = "0.1.0"
description = "Research-friendly implementation of LLMs in JAX"
authors = [
{ name="Andrei Zhabinski", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.10.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"flax>=0.8.4",
"optax>=0.2.2",
"tokenizers>=0.19.1",
"safetensors>=0.4.3",
"huggingface-hub>=0.23.1",
]
[project.urls]
Homepage = "https://github.com/dfdx/fabrique"
[project.optional-dependencies]
dev = [
"pytest",
"ipython",
"mypy>=1.9.0",
"mypy-extensions>=1.0.0",
"black",
"isort",
]
[tool.setuptools.packages]
find = {}
[tool.mypy]
[[tool.mypy.overrides]]
module = "tokenizers.*,huggingface_hub.*,transformers.*"
ignore_missing_imports = true