forked from caikit/caikit-nlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (37 loc) · 1.2 KB
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "caikit-nlp"
# Not the actual current version: overwritten by CI
version = "0.0.1"
description = "Caikit NLP"
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = "~=3.9"
classifiers=[
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"caikit[runtime-grpc,runtime-http]>=0.18.1,<0.22.0",
"caikit-tgis-backend>=0.1.17,<0.2.0",
# TODO: loosen dependencies
"accelerate>=0.22.0",
"datasets>=2.4.0",
"huggingface-hub",
"numpy>=1.22.4",
"pandas>=1.5.0",
"scikit-learn>=1.1",
"scipy>=1.8.1",
"tokenizers>=0.13.3",
"torch>=2.0.1",
"tqdm>=4.65.0",
"transformers>=4.32.0",
# GK-AUG-25-2023 NOTE: mpt branch on Mayank's fork was merged to peft main on Aug 24 and it got deleted
# which broke caikit-nlp build. peft hasn't released newer version yet, so to get
# the build fix, we pulling peft from main branch commit. In future, we will pull PEFT from
# pypi
"peft@git+https://github.com/huggingface/peft.git#8c17d556a8fe9522e10d73d7bd3fad46a6ecae14"
]
[project.urls]
Source = "https://github.com/caikit/caikit-nlp"