-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
photo-importer (1.1.2) stable; urgency=medium | ||
|
||
* Update setup scripts | ||
|
||
-- Alexander Bushnev <[email protected]> Mon, 28 Nov 2022 00:21:13 +0100 | ||
|
||
photo-importer (1.1.1) stable; urgency=medium | ||
|
||
* Add date/time patterns in out subdirs support | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,48 @@ | ||
from setuptools import setup | ||
setup(name='photo-importer', | ||
version='1.1.1', | ||
description='Photo importer tool', | ||
author='Alexander Bushnev', | ||
author_email='[email protected]', | ||
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) | ||
import os | ||
|
||
|
||
def get_long_description(): | ||
this_directory = os.path.abspath(os.path.dirname(__file__)) | ||
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
return long_description | ||
|
||
|
||
setup( | ||
name='photo-importer', | ||
version='1.1.2', | ||
description='Photo importer tool', | ||
author='Alexander Bushnev', | ||
author_email='[email protected]', | ||
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'], | ||
url='https://github.com/sashacmc/photo-importer', | ||
long_description=get_long_description(), | ||
long_description_content_type='text/markdown', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX :: Linux', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Topic :: Scientific/Engineering :: Image Processing', | ||
'Topic :: Multimedia :: Video', | ||
'Topic :: Utilities', | ||
], | ||
zip_safe=False, | ||
) |