-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update contributor guidelines and add requirements.txt
- Loading branch information
Showing
4 changed files
with
14 additions
and
6 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 |
---|---|---|
|
@@ -17,10 +17,15 @@ Please send an email to [email protected] if you are interested in beco | |
## Development | ||
|
||
``` | ||
pip install setuptools virtualenv pep8 wheel twine | ||
# dependencies | ||
pip install -r requirements.txt | ||
# development dependencies | ||
pip install setuptools virtualenv pep8 wheel twine | ||
``` | ||
|
||
When makeing commit messages please follow the [Angular Git Commit Guidelines](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines) | ||
|
||
## Testing | ||
|
||
Tests spawn and destroy instances labelled 'python-vultr: test' | ||
|
@@ -39,10 +44,10 @@ python setup.py test | |
Releases are tracked by creating a pull request from master to release. Ensure the version has been properly upticked before creating the release candidate pull request. The merged commit should be tagged with the proper version and built and uploaded to pypi. Currently the release process is manual. Once a more mature testing suite in place, it should be automated with TravisCI. | ||
|
||
``` | ||
rm -rf dist/ | ||
python setup.py sdist | ||
python setup.py bdist_wheel | ||
python setup.py sdist upload -r pypi | ||
python setup.py bdist_wheel upload -r pypi | ||
twine upload -r pypi .\dist\vultr* | ||
``` | ||
|
||
based on: [Sharing Your Labor of Love: PyPI Quick and Dirty](https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/) |
Binary file not shown.
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
[wheel] | ||
universal=1 | ||
[bdist_wheel] | ||
universal=1 | ||
|
||
[metadata] | ||
license_file=LICENSE |
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