File size: 783 Bytes
e490a50 |
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 |
[tool.poetry]
name = "spanish-tweet-classifier"
version = "0.1.0"
description = "The app to showcase the tweet classifier"
authors = ["Your Name <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "spanish_tweet_classifier"}]
[tool.poetry.dependencies]
python = "^3.9.8"
transformers = "^4.26.1"
openai = "^0.27.2"
torch = "^1.13.1"
[tool.poetry.group.dev.dependencies]
streamlit = "^1.20.0"
black = "^23.1.0"
flake8 = "^6.0.0"
mypy = "^1.1.1"
pytest = "^7.2.2"
shellcheck-py = "^0.9.0.2"
isort = "^5.12.0"
pre-commit = "^3.1.1"
autoflake = "^2.0.2"
huggingface-hub = "^0.13.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ["py39"]
|