-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 1.45 KB
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
[tool.poetry]
name = "textpredict"
version = "0.1.3"
description = "TextPredict is a powerful Python package designed for various text analysis and prediction tasks using advanced NLP models. It simplifies the process of performing sentiment analysis, emotion detection, zero-shot classification, named entity recognition (NER), and more."
authors = ["Ankit Aglawe <aglawe.ankit@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "textpredict" }]
homepage = "https://github.com/ankit-aglawe/textpredict"
repository = "https://github.com/ankit-aglawe/textpredict"
keywords = ["text classification", "emotion classification", "sentiment analysis", "text analysis", "machine learning", "NLP", "transformers", "data science", "pre-trained models", "text mining"]
[tool.poetry.dependencies]
python = "^3.9"
torch = "^1.9.0"
transformers = "^4.9.0"
datasets = "^1.11.0"
click = "^8.0.1"
fastapi = ">=0.68,<0.110"
uvicorn = "^0.15.0"
optuna = "^2.9.1"
matplotlib = "^3.4.3"
plotly = "^5.22.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
black = "^24.3"
isort = "^5.9.3"
flake8 = "^3.9.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Documentation" = "https://ankit-aglawe.github.io/textpredict/"
"Changelog" = "https://github.com/ankit-aglawe/textpredict/releases"
"Source" = "https://github.com/ankit-aglawe/textpredict"
"Tracker" = "https://github.com/ankit-aglawe/textpredict/issues"