1
0
mirror of https://github.com/sashacmc/photo-importer.git synced 2025-12-23 22:31:07 +02:00
Files
photo-importer/setup.py
Alexander Bushnev c90a5fa127 Add Windows support
2022-01-31 00:12:34 +01:00

18 lines
695 B
Python

from setuptools import setup
setup(name='photo-importer',
version='1.1.0',
description='Photo importer tool',
author='Alexander Bushnev',
author_email='Alexander@Bushnev.ru',
license='GNU General Public License v3.0',
packages=['photo_importer'],
data_files=[('/etc/',
['photo-importer.cfg']),
('/lib/systemd/system/',
['photo-importer.service']),
('share/photo-importer/web/',
['web/index.html', 'web/log.png'])],
install_requires=['PyExifTool', 'progressbar', 'psutil'],
scripts=['photo-importer', 'photo-importer-server'],
zip_safe=False)