-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (40 loc) · 1.18 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
40
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "align"
version = "0.1.0"
authors = [
{ name = "Yuheng Zha", email = "yzha@ucsd.edu" },
{ name = "Yichi Yang", email = "yiy067@ucsd.edu" },
{ name = "Ruichen Li", email = "rul014@ucsd.edu" },
{ name = "Zhiting Hu", email = "zhh019@ucsd.edu" },
]
description = "Text Alignment Is An Efficient Unified Model for Massive NLP Tasks"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"spacy>=3.4.0,<4",
"nltk>=3.7,<4",
"torch==1.12.1",
"transformers>=4.20.1,<4.30",
"tqdm>=4.64.0,<5",
"jsonlines>=2.0.0,<3",
"numpy>=1.23.1,<2",
"datasets>=2.3.2,<3",
"scikit-learn>=1.1.2,<2",
"pytorch_lightning>=1.7.7,<2",
"scipy>=1.8.1,<2",
"protobuf<=3.20",
"sentencepiece>=0.1.99,<0.2",
"pydantic>=2.5.0,<3"
]
[project.urls]
"Homepage" = "https://github.com/yuh-zha/Align"
"Bug Tracker" = "https://github.com/yuh-zha/Align/issues"