Skip to content

Commit

Permalink
Added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
grebtsew committed May 15, 2023
1 parent e9cf720 commit d568f76
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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",
],
)
1 change: 0 additions & 1 deletion tests/test_image_resize.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from utils import file
import shutil


def test_image_resize():
"""
Test the image resize feature
Expand Down

0 comments on commit d568f76

Please sign in to comment.