Skip to content

Commit

Permalink
chore: update contributor guidelines and add requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
dopry committed Jun 4, 2018
1 parent 84da9d1 commit 9a7bebe
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
11 changes: 8 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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 added requirements.txt
Binary file not shown.
7 changes: 5 additions & 2 deletions setup.cfg
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def read(filename):

setup(
name='vultr',
version='1.0rc1',
version='1.0.0',
install_requires=[
"requests"
],
Expand Down

0 comments on commit 9a7bebe

Please sign in to comment.