AMMICO/pyproject.toml
GwydionJon e120c10d9f
Fix dash layout (#143)
* force_rounding_of_all_colors

* update test

* fixed bug in color analysis

* changed color rounding to seperate loop

* updated to new dash layout using dbc

* removed dash server from test

* added dash version to pyproject.toml

* changed something to get codecov to work

* changed something else to get codecov to work..

* added test_right_output_analysis_text

* fix type in dependencies

* removed test_text from display

---------

Co-authored-by: Inga Ulusoy <inga.ulusoy@uni-heidelberg.de>
2023-08-31 11:00:30 +02:00

79 строки
1.8 KiB
TOML

[build-system]
requires = [
"setuptools>=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "ammico"
version = "0.1.0"
description = "AI Media and Misinformation Content Analysis Tool"
readme = "README.md"
maintainers = [
{ name = "Inga Ulusoy", email = "ssc@iwr.uni-heidelberg.de" },
{ name = "Petr Andriushchenko", 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 = [
"bertopic<=0.14.1",
"cvlib",
"dash>=2.11.0",
"dash_renderjson",
"deepface<=0.0.75",
"googletrans==3.1.0a0",
"google-cloud-vision",
"grpcio",
"importlib_metadata",
"importlib_resources",
"ipython",
"jupyter_dash",
"matplotlib",
"numpy<=1.23.4",
"pandas",
"Pillow",
"pooch",
"protobuf",
"pytest",
"pytest-cov",
"Requests",
"retina_face",
"salesforce-lavis @ git+https://github.com/piterand/LAVIS.git@release_1.0.2",
"setuptools",
"spacy",
"tensorflow<=2.12.3",
"torch",
"transformers",
"google-cloud-vision",
"setuptools",
"opencv-contrib-python",
"dash",
"dash_renderjson",
"dash_bootstrap_components",
"colorgram.py",
"webcolors",
"colour-science",
"scikit-learn!=1.3.0",
]
[project.scripts]
ammico_prefetch_models = "ammico.utils:ammico_prefetch_models"
[project.urls]
homepage = "https://github.com/ssciwr/AMMICO" # FIXME not shown by pip
documentation = "https://ssciwr.github.io/AMMICO/build/html/index.html"
[tool.setuptools]
packages = ["ammico","ammico.data"]
[tool.setuptools.package-data]
# Include any png and csv files found in the "data" subdirectory of "ammico"
"ammico.data" = ["*.png", "*.csv"]