From b1815a3bf371a122b8465101d8189b32d8b1969f Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Fri, 26 Jul 2019 22:41:10 -0400 Subject: [PATCH] version bump --- README.md | 2 +- requirements.txt | 4 ++++ setup.py | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 9c48fba6..f9f47463 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ OSXPhotos provides the ability to manipulate the Apple's Photos app database on ## Supported operating systems -Only works on Mac OS X. Only tested on Mac OS 10.13 and Photos 3.0. +Only works on Mac OS X. Only tested on Mac OS 10.13 and Photos 3.0. Requires python >= 3.6 ## Installation instructions diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..e903bd6f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +# pip install -r requirements.txt + +pyobjc-core +pyobjc diff --git a/setup.py b/setup.py index 20f2fb98..b5cff046 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: setup( name="osxphotos", - version="0.01", + version="0.10", description="Manipulate (read-only) Apple's Photos app library on Mac OS X", long_description=long_description, long_description_content_type="text/markdown", @@ -58,7 +58,7 @@ setup( "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", ], - install_requires=["pyobjc","loguru"], + install_requires=["pyobjc",], # entry_points = { # 'console_scripts' : ['osxmetadata=osxmetadata.cmd_line:main'], # }