-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name="AlbumOrganizer",
version="0.1",
description="Organize photo albums using face recognition.",
author="Grebtsew",
url="https://github.com/grebtsew/AlbumOrganizer",
packages=find_packages(),
install_requires=[
"pandas==2.0.1",
"face_recognition==1.3.0",
"numpy== 1.24.2",
"opencv-python==4.7.0.72",
"tabulate==0.9.0", # pretty print of dataframe
"tqdm==4.65.0", # progress bars
"black==23.3.0", # reformatting code
"pytest==7.3.1", # testing
"pyfiglet==0.8.post1", # pretty print script title
# Extra features
"scikit-learn==1.2.2",
"pytesseract==0.3.10",
"torch==2.0.1",
"torchvision==0.15.2",
"scikit-image==0.20.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
)