spanish-tweet-classifier / pyproject.toml
francisco-perez-sorrosal's picture
Add Poetry project and documentation to setup a fully standalone working project
e490a50
raw
history blame contribute delete
783 Bytes
[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"]