зеркало из
https://github.com/ssciwr/AMMICO.git
synced 2025-10-29 13:06:04 +02:00
* Create ci.yml * include pytest * Update pyproject.toml * include pytest-cov * use approx in pytest * Update test_faces.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * add coverage yaml * reduce passing grade Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
47 строки
1012 B
TOML
47 строки
1012 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.9"
|
|
license = { text = "MIT" }
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
"License :: OSI Approved :: MIT License",
|
|
]
|
|
dependencies = [
|
|
"google-cloud-vision",
|
|
"cvlib",
|
|
"deepface",
|
|
"ipywidgets",
|
|
"numpy",
|
|
"opencv_python",
|
|
"pandas",
|
|
"pooch",
|
|
"protobuf",
|
|
"retina_face",
|
|
"setuptools",
|
|
"tensorflow",
|
|
"keras",
|
|
"openpyxl",
|
|
"pytest",
|
|
"pytest-cov",
|
|
]
|
|
|
|
[project.scripts]
|
|
misinformation_prefetch_models = "misinformation.utils:misinformation_prefetch_models"
|
|
|
|
[tool.setuptools]
|
|
packages = ["misinformation"]
|