-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.46 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "Banter.ly"
version = "0.1.0"
description = "The most comprehensive open source chat analytics and visualization app"
authors = ["Amir Abushanab <[email protected]>"]
maintainers = ["Amir Abushanab <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://hackersandslackers.com/plotly-dash-with-flask/"
repository = "https://github.com/sahaab-io/banter.ly"
documentation = ""
keywords = ["Message Analysis", "Chat Analytics", "NLP", "Data Science"]
[tool.poetry.dependencies]
python = "^3.7"
dash = "*"
flask = "*"
flask_assets = "*"
#flask_caching = "*"
pymongo = "*"
dnspython= "*"
#redis = "*"
dash_Table = "*"
dash_core_components = "*"
dash_html_components = "*"
dash-renderer = "*"
dash-daq = "*"
pandas = "*"
python-dotenv = "*"
waitress = "*"
smart_open = "*"
emoji = "*"
networkx = "*"
spacy = "*"
nltk = "*"
wordcloud = "*"
pillow = "*"
profanity-check = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pygments = "*"
black = { version = "*", allow-prereleases = true }
pre-commit = { version = "*", allow-prereleases = true }
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"
#[tool.poetry.scripts]
#setup = "python -m nltk.downloader punkt stopwords wordnet vader_lexicon"
#start = "gunicorn index:server"
[tool.poetry.urls]
issues = "https://github.com/sahaab-io/banter.ly/issues"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| cache
)/
'''