Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix pypi meta data #658

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.DS_Store
build/
dist/
wheelhouse/
icloudpd.egg-info
cron_script.sh
Photos/
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- fix: pypi.org license and description

## 1.14.5 (2023-07-06)

- fix: pypi publishing for macos
Expand Down
2 changes: 2 additions & 0 deletions scripts/build_binary_dist_linux
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ rm -rf dist/binary_dist

# basic
cp -r binary_dist dist/binary_dist
cp LICENSE.md dist/binary_dist/
cp README_PYPI.md dist/binary_dist/

cp dist/icloudpd-$1-linux-amd64 dist/binary_dist/src/icloudpd/icloudpd
cp dist/icloud-$1-linux-amd64 dist/binary_dist/src/icloud/icloud
Expand Down
2 changes: 2 additions & 0 deletions scripts/build_binary_dist_macos
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ rm -rf dist/binary_dist

# basic
cp -r binary_dist dist/binary_dist
cp LICENSE.md dist/binary_dist/
cp README_PYPI.md dist/binary_dist/

cp dist/icloudpd-$1-macos-amd64 dist/binary_dist/src/icloudpd/icloudpd
cp dist/icloud-$1-macos-amd64 dist/binary_dist/src/icloud/icloud
Expand Down
2 changes: 2 additions & 0 deletions scripts/build_binary_dist_windows
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ rm -rf dist/binary_dist

# basic
cp -r binary_dist dist/binary_dist
cp LICENSE.md dist/binary_dist/
cp README_PYPI.md dist/binary_dist/

cp dist/icloudpd-$1-windows-amd64.exe dist/binary_dist/src/icloudpd/icloudpd
cp dist/icloud-$1-windows-amd64.exe dist/binary_dist/src/icloud/icloud
Expand Down