-
Notifications
You must be signed in to change notification settings - Fork 129
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 #203 from jacebrowning/release/v1.0
Release v1.0
- Loading branch information
Showing
88 changed files
with
850 additions
and
450 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[run] | ||
branch = true | ||
omit = | ||
*/env/* | ||
*/test/* |
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[pep257] | ||
|
||
# D10*: Missing docstring (checked by PyLint) | ||
# D202: No blank lines allowed *after* function docstring (personal preference) | ||
add-ignore = D102,D105,D202 |
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
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
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
For Contributors | ||
================ | ||
|
||
Requirements | ||
------------ | ||
|
||
* Make: | ||
* Windows: http://cygwin.com/install.html | ||
* Mac: https://developer.apple.com/xcode | ||
* Linux: http://www.gnu.org/software/make (likely already installed) | ||
* virtualenv: https://pypi.python.org/pypi/virtualenv#installation | ||
* Pandoc: http://johnmacfarlane.net/pandoc/installing.html | ||
* Graphviz: http://www.graphviz.org/Download.php | ||
|
||
Installation | ||
------------ | ||
|
||
Create a virtualenv: | ||
|
||
``` | ||
$ make env | ||
``` | ||
|
||
Run the tests: | ||
|
||
``` | ||
$ make test | ||
$ make tests # includes integration tests | ||
``` | ||
|
||
Build the documentation: | ||
|
||
``` | ||
$ make doc | ||
``` | ||
|
||
Run static analysis: | ||
|
||
``` | ||
$ make pep8 | ||
$ make pep257 | ||
$ make pylint | ||
$ make check # includes all checks | ||
``` | ||
|
||
Release to PyPI: | ||
|
||
``` | ||
$ make upload-test # dry run upload to a test server | ||
$ make upload | ||
``` |
Oops, something went wrong.