-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
52 lines (41 loc) · 956 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
51
52
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mttl"
version = "0.0.1"
description = "Multi-Task Transfer Learning with Adapters"
readme = "README.md"
requires-python = ">=3.9, <3.12" # ray don't support 3.12
dynamic = ["dependencies"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages]
find = {}
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock>=3.13",
"pytest-xdist",
"pre-commit",
"black",
"isort",
]
flash-attn = [
"flash-attn>=2.6.0",
]
vllm = [
"vllm",
]
[project.urls]
"Homepage" = "https://github.com/microsoft/mttl"
"Bug Tracker" = "https://github.com/microsoft/mttl/issues"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"