-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
74 lines (67 loc) · 1.73 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
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ammico"
version = "0.2.2"
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",
"dash>=2.11.0",
"datasets",
"deepface<=0.0.93",
"googletrans==4.0.0rc1",
"google-cloud-vision",
"grpcio",
"importlib_metadata",
"importlib_resources",
"ipython",
"jupyter",
"jupyter_dash",
"matplotlib",
"numpy<=1.23.4",
"pandas",
"Pillow",
"pooch",
"protobuf",
"pytest",
"pytest-cov",
"Requests",
"retina_face",
"ammico-lavis>=1.0.2.3",
"huggingface-hub<=0.25.2",
"setuptools",
"spacy<=3.7.5",
"tensorflow>=2.13.0",
"torch<2.6.0",
"transformers",
"google-cloud-vision",
"dash_bootstrap_components",
"colorgram.py",
"webcolors>1.13",
"colour-science",
"scikit-learn>1.3.0",
"tqdm"
]
[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"]