-
Notifications
You must be signed in to change notification settings - Fork 6
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
Python Packaging Setup #1
Comments
Oh wow we can automate the python package deployment! https://docs.travis-ci.com/user/deployment/pypi/ |
I can see that my locally generated source distribution can install and be imported with
This appears to have the proper |
I have Travis-CI encryption working on my computer after installing Is this true @reillyeon @hdkmike @el-iso @lqdev? |
We will see how this goes. I manually made travis encrypt use |
Closing since the main intent of this ticket has been achieved and #32 covers actual deployments from Travis CI. I have performed an automated upload attempt on build#86. It appears that the deployment was attempted but halted since the deployment may have been required to be from a FaradayRF repository branch. The following output were the last two lines in the build:
This appears to have at least triggered an automated deployment of an otherwise good module. |
* Added deploy section with login credentials for pypi * Encrypted the password for `faradayrf/faradayio` repository per #1
Starting off by packaging the project from the start. Since we're starting with python 3 I'm using the following guides:
http://www.diveintopython3.net/packaging.html
https://packaging.python.org/tutorials/distributing-packages/
https://docs.python.org/3/library/distribution.html
Ensure the package is built correctly (installed python modules), there is no program to run yet. However, unit testing should accomplish this.
Automate package pushing to the
pypi
serversThe text was updated successfully, but these errors were encountered: