-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (29 loc) · 909 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "huggingface-sentiment-analysis"
version = "1.0.0"
description = "An example of sentiment analysis using Hugging Face instead of expensive LLM tokens."
readme="README.md"
authors = [
{name = "David Mickelson", email = "davidpmickelson@gmail.com"}
]
license = {text = "MIT"}
[project.urls]
homepage = "https://github.com/dmickelson"
repository = "https://github.com/dmickelson/SentimentAnalysisWithHuggingFaceProject"
[project.dependencies]
# Add your project dependencies here
python = "^3.9"
pandas = "^2.0"
numpy = "^1.24"
requests = "^2.28"
torch = "^1.13"
transformers = "^4.27"
[tool.setuptools]
# Add any setuptools-specific configurations here
[tool.setuptools.package_data]
"huggingface-sentiment-analysis" = ["data/Dropbox.csv"]
[tool.setuptools.extras_require]
dev = ["pytest"]