-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
49 lines (48 loc) · 1.54 KB
/
setup.py
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
from setuptools import setup
from setuptools import find_packages
setup(
name="logodetect",
version="1.1.3",
description="One-shot logo detection for videos and images.",
long_description="One-shot logo detection for videos and images.",
url="https://github.com/Heldenkombinat/logodetect",
download_url="https://github.com/Heldenkombinat/logodetect/tarball/1.1.0",
author="Jorge Davila Chacon",
author_email="[email protected]",
install_requires=[
"click>=7.1.1",
"Cython>=0.29.15",
"Flask>=1.1.1",
"Flask-Cors>=3.0.9",
"gunicorn>=20.0.4",
"imgaug>=0.4.0",
"jupyterlab==3.2.4",
"matplotlib>=2.2.5",
"moviepy>=1.0.1",
"numpy>=1.18.2",
"opencv-python>=4.2.0.32",
"pandas>=1.0.3",
"pytest>=6.2.4",
"scikit-image>=0.16.2",
"scikit-learn>=0.22.1",
"scipy>=1.4.1",
"torch>=1.9.0",
"torchvision>=0.10.0",
"tqdm>=4.42.1",
],
extras_require={
"tests": ["pytest", "pytest-pep8", "pytest-cov", "mock", "pylint", "autopep8"],
"dev": ["black", "pre-commit", "flask", "gunicorn"],
},
entry_points={"console_scripts": ["logodetect=logodetect.cli:cli"]},
packages=find_packages(),
license="GNU AGPLv3",
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
)