зеркало из
https://github.com/ssciwr/AMMICO.git
synced 2025-10-29 13:06:04 +02:00
* increased dash width * added new color_analysis notebook * added colorgram.py to dependencies * added first iteration of new color_check * added new version of color analysis * added webcolors to dependencies * added colormath * switched from colormath to colour-science * made delta_e algorithm user accessible * remove obsolete notebook * update docstrings and type hints * add color analysis module to API doc * renamed color_expressions to color_analysis * renamed test * updated color analysis notebook to adhere to the same style as other notebooks * updated test for new df orientation * refactored color analysis to comply with ammico workflow * updated color tests to comply with new class structure * added explanation to colors_analysis notebook * added class doc string * updated analysis explorer test to include empty image keyword as dash observer * fix typo and names, docstring and import * update doc and notebook explanation * add project url for pypi --------- Co-authored-by: Inga Ulusoy <inga.ulusoy@uni-heidelberg.de>
78 строки
1.8 KiB
TOML
78 строки
1.8 KiB
TOML
[build-system]
|
|
requires = [
|
|
"setuptools==61",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ammico"
|
|
version = "0.0.1"
|
|
description = "AI Media and Misinformation Content Analysis Tool"
|
|
readme = "README.md"
|
|
maintainers = [
|
|
{ name = "Inga Ulusoy", email = "ssc@iwr.uni-heidelberg.de" },
|
|
{ name = "Dominic Kempf", 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",
|
|
"dash_renderjson",
|
|
"deepface<=0.0.75",
|
|
"googletrans==3.1.0a0",
|
|
"google-cloud-vision",
|
|
"grpcio",
|
|
"importlib_metadata",
|
|
"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",
|
|
"torch",
|
|
"transformers",
|
|
"google-cloud-vision",
|
|
"setuptools",
|
|
"opencv-contrib-python",
|
|
"dash",
|
|
"jupyter_dash",
|
|
"dash_renderjson",
|
|
"colorgram.py",
|
|
"webcolors",
|
|
"colour-science",
|
|
]
|
|
|
|
[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"]
|
|
|
|
[tool.setuptools.package-data]
|
|
# Include any png files found in the "data" subdirectory of "ammico"
|
|
"ammico.data" = ["*.png"]
|
|
mypkg = [ "*.csv"]
|
|
|