-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from hsanson/33-migrate-to-setuptools
33 migrate to setuptools
- Loading branch information
Showing
12 changed files
with
201 additions
and
116 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ application/MANIFEST | |
application/dist/* | ||
application/build/* | ||
extension.zip | ||
chrome_pass.egg-info |
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 |
---|---|---|
|
@@ -3,18 +3,18 @@ | |
## Chrome Extension | ||
|
||
1. Create extension zip `zip -r extension.zip extension`. | ||
2. Go to [Chrome Developer Dashboard](https: | ||
//chrome.google.com/webstore/devconsole). | ||
2. Go to [Chrome Developer Dashboard](https://chrome.google.com/webstore/devconsole). | ||
3. Login with developer account ([email protected]). | ||
4. Go to the extension details -> build -> package -> Upload new package. | ||
5. After uploading the extension.zip file edit the store listing description. | ||
6. Press `submit for review` to publish. | ||
|
||
## Native App | ||
|
||
1. pip3 install --user twine | ||
2. Configure pypi API token in ~/.pypirc file. | ||
1. Configure pypi API token in ~/.pypirc file. | ||
https://pypi.org/help/#apitoken | ||
3. Update the version string below. | ||
4. Build package with `python3 setup.py sdist` | ||
5. Upload package with `twine upload dist/*` | ||
2. cd application | ||
3. pip3 install --user twine build setuptools | ||
4. Update the version string in the pyproject.toml file. | ||
5. Build package with `python3 -m build` | ||
6. Upload package with `twine upload dist/*` |
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
Oops, something went wrong.