-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* a python bug fixed with changing scripts name to uppercase * fix for linux builds ( use os.path.join instead os string operations for path )
- Loading branch information
Showing
5 changed files
with
28 additions
and
23 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,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# |
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
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 |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
from codecs import open | ||
from os import path | ||
import radmyarchive | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: | ||
|
@@ -17,11 +16,12 @@ | |
author="Ömer Fadıl Usta", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
scripts=["radmyarchive.py"], | ||
scripts=["scripts/RADMYARCHIVE.py"], | ||
url="https://github.com/usta/radmyarchive-py", | ||
license="BSD", | ||
keywords="exif image photo rename metadata arrange rearrange catalogue", | ||
description="A simple photo rearranger with help of EXIF tags", | ||
install_requires=['exifread', 'termcolor', 'colorama'], | ||
long_description=readme_file, | ||
classifiers=( | ||
"Development Status :: 3 - Alpha", | ||
|
@@ -31,8 +31,6 @@ | |
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Topic :: Utilities", | ||
), | ||
install_requires=['ExifRead', 'termcolor', 'colorama'], | ||
) |