AMMICO/pyproject.toml
Inga Ulusoy 446da693e3
Text on image 1 (#4)
* read image into nb

* test

* added keras-ocr and google vision

* google cloud vision by far the best

* setting up docker for text 1

* move widgets and analysis to display module

* move widgets and analysis to display module - 2

* text on image through widgets
2022-07-27 22:41:13 +02:00

35 строки
848 B
TOML

[build-system]
requires = [
"setuptools>=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "misinformation"
version = "0.0.1"
description = "Misinformation campaign analysis"
readme = "README.md"
maintainers = [
{ name = "Inga Ulusoy", email = "ssc@iwr.uni-heidelberg.de" },
{ name = "Dominic Kempf", email = "ssc@iwr.uni-heidelberg.de" },
]
requires-python = ">=3.8"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"deepface",
"ipywidgets ==8.0.0rc1",
"pooch",
"retina-face",
"google-cloud-vision",
]
[project.scripts]
misinformation_prefetch_models = "misinformation.utils:misinformation_prefetch_models"
[tool.setuptools]
packages = ["misinformation"]