Skip to content

Commit a373927

Browse files
committed
v0.4.5 more setup changes to get PyPI package in order
1 parent 5d37a91 commit a373927

File tree

7 files changed

+9
-3
lines changed

7 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Date (Timezone) | Version | Comment
2828
04/09/2020 04:25:31 AM (PDT) | 0.4.2 | roll back 0.4.0's pyexiftool rename. It appears there's no specific PEP to have to to name PyPI projects to be py<something>. The only convention I found was https://www.python.org/dev/peps/pep-0423/#use-standard-pattern-for-community-contributions which I might look at in more detail
2929
04/09/2020 05:15:40 AM (PDT) | 0.4.3 | initial work of moving the exiftool.py into a directory preparing to break it down into separate files to make the codebase more manageable
3030
03/12/2021 01:37:30 PM (PDT) | 0.4.4 | no functional code changes. Revamped the setup.py and related files to release to PyPI. Added all necessary and recommended files into release
31+
03/12/2021 02:03:38 PM (PDT) | 0.4.5 | no functional code changes. re-release with new version because I accidentally included the "test" package with the PyPI 0.4.4 release. I deleted it instead of yanking or doing a post release this time... just bumped the version. "test" folder renamed to "tests" as per convention, so the build will automatically ignore it
3132

3233
On version changes, update setup.py to reflect version
3334

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Run tests to make sure it's functional
6565

6666
::
6767

68-
python -m unittest -v test/test_exiftool.py
68+
python -m unittest -v tests/test_exiftool.py
6969

7070
Documentation
7171
-------------

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
# overview
3232
name="PyExifTool",
33-
version="0.4.4",
33+
version="0.4.5",
3434
license="GPLv3+/BSD",
3535
url="http://github.com/sylikc/pyexiftool",
3636
python_requires=">=2.6",
@@ -72,7 +72,12 @@
7272
"Topic :: Multimedia",
7373
"Topic :: Utilities",
7474
],
75-
packages=find_packages(where="."),
75+
76+
77+
packages=find_packages(
78+
where=".",
79+
exclude = ['test*',]
80+
),
7681

7782
#py_modules=["exiftool"], - it is now the exiftool module
7883
)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)