forked from smarnach/pyexiftool
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
no functional changes. Update documentation slightly, and preparing f…
…or 0.5.3 release
- Loading branch information
Showing
5 changed files
with
64 additions
and
39 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
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 |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
import re | ||
|
||
def get_long_desc(): | ||
""" read README.rst without the badges (don't need those showing up on PyPI) """ | ||
""" read README.rst skipping some of the badges (don't need those showing up on PyPI) """ | ||
|
||
with open("README.rst", "r", encoding="utf-8") as fh: | ||
long_desc = fh.read() | ||
|
@@ -56,7 +56,7 @@ def get_long_desc(): | |
python_requires=">=3.6", | ||
|
||
# authors | ||
author="Sven Marnach, Kevin M (sylikc), various contributors", | ||
author="Kevin M (sylikc), Sven Marnach, various contributors", | ||
author_email="[email protected]", | ||
|
||
# info | ||
|
@@ -66,9 +66,11 @@ def get_long_desc(): | |
keywords="exiftool image exif metadata photo video photography", | ||
|
||
project_urls={ | ||
"Documentation": "https://sylikc.github.io/pyexiftool/", | ||
"Tracker": "https://github.com/sylikc/pyexiftool/issues", | ||
# this seems to get populated in PyPI in reverse order | ||
"Source": "https://github.com/sylikc/pyexiftool", | ||
"Tracker": "https://github.com/sylikc/pyexiftool/issues", | ||
"Changelog": "https://github.com/sylikc/pyexiftool/blob/master/CHANGELOG.md", | ||
"Documentation": "https://sylikc.github.io/pyexiftool/", | ||
}, | ||
|
||
|
||
|
@@ -98,16 +100,18 @@ def get_long_desc(): | |
], | ||
|
||
|
||
# include is more robust that exclude | ||
packages=find_packages( | ||
where=".", | ||
exclude = ['test*','doc*'] | ||
#where=".", | ||
#exclude = ['test*','doc*'], | ||
include=['exiftool', 'exiftool.*'], | ||
), | ||
|
||
extras_require={ | ||
"json": ["ujson"], # supported option for ExifTool, but not currently advertised | ||
"test": ["packaging"], # dependencies to do tests | ||
"docs": ["packaging", "sphinx", "sphinx-autoapi", "sphinx-rtd-theme", "sphinx-autodoc-typehints"], # dependencies to build docs | ||
}, | ||
"json": ["ujson"], # supported option for ExifTool, but not currently advertised | ||
"test": ["packaging"], # dependencies to do tests | ||
"docs": ["packaging", "sphinx", "sphinx-autoapi", "sphinx-rtd-theme", "sphinx-autodoc-typehints"], # dependencies to build docs | ||
}, | ||
|
||
#package_dir={'exiftool': 'exiftool'}, | ||
|
||
|