-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
feat: add setup files #23
Conversation
ContributorsCommit-Lint commandsYou can trigger Commit-Lint actions by commenting on this PR:
|
Codecov Report
@@ Coverage Diff @@
## main #23 +/- ##
==========================================
+ Coverage 89.06% 92.29% +3.22%
==========================================
Files 10 14 +4
Lines 869 1272 +403
==========================================
+ Hits 774 1174 +400
- Misses 95 98 +3
|
@bhavikapanara you only added setup.cfg which is not enough to publish a package. You also need setup.py. See how we do this for peerjs-python. |
Look closer at the peerjs-python CI scripts for packaging and publishing a pypi package. The three key scripts you need to study and understand are:
While testing your local scripts and CI runs, make sure to use TestPyPi to publish your new package from the CI workflow instead of the official PyPi repo. |
Signed-off-by: bhavikapanara <[email protected]>
Signed-off-by: bhavikapanara <[email protected]>
Signed-off-by: bhavikapanara <[email protected]>
Signed-off-by: bhavikapanara <[email protected]>
src/setup.cfg
Outdated
@@ -1,7 +1,7 @@ | |||
[metadata] | |||
name = ambianic-fall-detection | |||
version = 1.0.0 | |||
author = Bhavika Panara | |||
author = Ivelin Ivanov |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bhavikapanara you should leave your name as the author.
# 1.0.0 (2021-10-03) ### Bug Fixes * python setup files ([#23](#23)) ([41ee60d](41ee60d)) ### Features * add MoveNet and PoseNet notebooks for experiment ([916271e](916271e)) * add plot title for video seq ([db3d7c2](db3d7c2)) * add tflite model training and inference ([#33](#33)) ([3e7658c](3e7658c)) * add video samples to notebook ([702b334](702b334)) * fall detect pypi publishing ([#32](#32)) ([87f1751](87f1751)) * fall-detect initialization ([6e439aa](6e439aa)), closes [#14](#14) ### Performance Improvements * [ImgBot] Optimize images ([#19](#19)) ([a489885](a489885))
🎉 This PR is included in version 1.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
No description provided.