-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 1.22 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
from setuptools import setup
import pathlib
base_dir = pathlib.Path(__file__).parent
with open(base_dir / "README.md") as f:
long_description = f.read()
setup(
name = 'photosdup',
packages = ['photosdup'],
version = '3.1',
license='MIT',
description = 'Photos Duplicate finder - searches for duplicate or similar images in a (Mac) Photos library.',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Peter Schneider-Kamp',
author_email = '[email protected]',
url = 'https://github.com/peter-sk/photosdup',
keywords = ['mac', 'photos', 'duplicate', 'finder'],
install_requires=[
'scipy',
'numpy',
'opencv-python',
'photoscript',
'scikit-image',
'PySimpleGUI',
'tqdm',
'pyheif',
'matplotlib'
],
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9'
]
)