-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 840 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 840 Bytes
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
from setuptools import setup, find_packages
setup(
name="frame-prep",
version="0.2.1",
description="Intelligent image preprocessor for e-ink picture frames with contextual zoom and OpenVINO acceleration",
author="Antoine",
python_requires=">=3.10",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"Pillow>=10.0.0",
"opencv-python>=4.8.0",
"numpy>=1.24.0",
"ultralytics>=8.0.0",
"torch>=2.0.0",
"torchvision>=0.15.0",
"click>=8.1.0",
"tqdm>=4.65.0",
"colorama>=0.4.6",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"black>=23.0.0",
],
},
entry_points={
"console_scripts": [
"frame-prep=frame_prep.cli:cli",
],
},
)