2021-04-19 14:14:51 +00:00
|
|
|
[tool.poetry]
|
2021-05-13 17:24:44 +00:00
|
|
|
name = "nest"
|
2021-04-19 14:14:51 +00:00
|
|
|
version = "0.1.0"
|
2021-05-13 17:24:44 +00:00
|
|
|
description = "Noi Estraiamo Statistiche Tweet"
|
2021-05-07 01:34:05 +00:00
|
|
|
authors = [
|
|
|
|
"Lorenzo Balugani <256867@studenti.unimore.it>",
|
|
|
|
"Stefano Pigozzi <256895@studenti.unimore.it>",
|
|
|
|
"Stefano Goldoni <280712@studenti.unimore.it>",
|
|
|
|
"Giorgio Minoccari <261807@studenti.unimore.it>",
|
|
|
|
"Flavia Cocca <253218@studenti.unimore.it>",
|
|
|
|
"Chiara Calzolari <258727@studenti.unimore.it>",
|
|
|
|
"Giovanni Anniballi <253150@studenti.unimore.it>",
|
|
|
|
]
|
2021-05-13 17:24:44 +00:00
|
|
|
packages = [
|
|
|
|
{ include = "nest_backend" },
|
|
|
|
{ include = "nest_crawler" },
|
|
|
|
]
|
2021-04-19 14:14:51 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-04-21 16:47:18 +00:00
|
|
|
python = "^3.8.5"
|
2021-04-26 17:59:24 +00:00
|
|
|
psycopg2-binary = "^2.8.6"
|
2021-04-19 14:14:51 +00:00
|
|
|
Flask = "^1.1.2"
|
|
|
|
Flask-SQLAlchemy = "^2.5.1"
|
2021-04-22 16:46:41 +00:00
|
|
|
bcrypt = "^3.2.0"
|
|
|
|
Flask-JWT-Extended = "^4.1.0"
|
2021-04-25 13:41:27 +00:00
|
|
|
Flask-Cors = "^3.0.10"
|
2021-04-25 15:24:37 +00:00
|
|
|
requests = "^2.25.1"
|
2021-05-05 20:21:04 +00:00
|
|
|
apispec = "^4.4.0"
|
|
|
|
apispec-webframeworks = "^0.5.2"
|
|
|
|
marshmallow = "^3.11.1"
|
|
|
|
openapi-spec-validator = "^0.3.0"
|
|
|
|
flask-swagger-ui = "^3.36.0"
|
2021-05-07 08:15:49 +00:00
|
|
|
tweepy = "^3.10.0"
|
|
|
|
nltk = "^3.6.2"
|
2021-05-12 02:49:25 +00:00
|
|
|
gunicorn = "^20.1.0"
|
2021-04-19 14:14:51 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-05-07 01:33:55 +00:00
|
|
|
pytest = "^6.2.3"
|
|
|
|
Sphinx = "^3.5.4"
|
2021-05-10 15:03:05 +00:00
|
|
|
sphinx-rtd-theme = "^0.5.2"
|
2021-04-19 14:14:51 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|