AMMICO/pyproject.toml
Inga Ulusoy 25ed5881a1
Text 2 (#42)
* start with translate

* translate and clean - notebook

* spacy model in requirements

* translate in module

* clean in module

* upload coverage only for ubuntu

* update ubuntu version on runner

* update dependencies

* start tests for text

* skip gcv test

* fix age

* more text tests

* more text tests

* add comment

* test translation

* fix numpy version; add reference data for trans

* use utf-8 for windows
2022-12-19 15:03:05 +01:00

52 строки
1.1 KiB
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<=1.23.4",
"opencv_python",
"pandas",
"pooch",
"protobuf",
"retina_face",
"setuptools",
"tensorflow",
"keras",
"openpyxl",
"pytest",
"pytest-cov",
"matplotlib",
"pytest",
"opencv-contrib-python",
"googletrans==3.1.0a0",
"spacy",
]
[project.scripts]
misinformation_prefetch_models = "misinformation.utils:misinformation_prefetch_models"
[tool.setuptools]
packages = ["misinformation"]