-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (24 loc) · 884 Bytes
/
pyproject.toml
File metadata and controls
26 lines (24 loc) · 884 Bytes
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
[project]
name = "mapping-prejudice"
version = "0.2.0"
description = "Racial term analysis pipeline for mapping prejudice project"
authors = [
{name = "Jiyoon Pyo",email = "jiyoonp0228@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"polars (>=1.29.0,<2.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"torch (>=2.7.0,<3.0.0)",
"transformers (>=4.51.3,<5.0.0)",
"accelerate (>=1.6.0,<2.0.0)",
"pyarrow (>=20.0.0,<21.0.0)",
"spacy (>=3.8.0,<3.8.4)",
"boto3 (>=1.38.12,<2.0.0)",
"en-core-web-sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl#sha256=1932429db727d4bff3deed6b34cfc05df17794f4a52eeb26cf8928f7c1a0fb85",
"flair (>=0.15.1,<0.16.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"