-
Notifications
You must be signed in to change notification settings - Fork 4
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 #38 from opalmer/release_tools
Release Tools and Dev Module
- Loading branch information
Showing
14 changed files
with
1,136 additions
and
25 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
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 |
---|---|---|
|
@@ -12,5 +12,5 @@ | |
/.provision | ||
/.ci/vagrant/sshd/files/authorized_keys | ||
/pywincffi.ini | ||
*Release* | ||
/Release* | ||
*_pywincffi.c |
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 |
---|---|---|
|
@@ -8,4 +8,6 @@ sphinx | |
wheel | ||
setuptools | ||
coverage | ||
requests | ||
codecov | ||
PyGithub |
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,9 @@ | ||
""" | ||
PyWinCFFI | ||
========= | ||
A core Python package that uses :mod:`cffi` to interact | ||
with Windows APIs. See :ref:`modindex` for more detailed | ||
information. | ||
""" | ||
__version__ = (0, 1, 0) |
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,8 +1,7 @@ | ||
""" | ||
Core | ||
==== | ||
Core Sub-Package | ||
================ | ||
The core package used internally by pywincffi. This package contains | ||
wrappers for :class:`cffi.api.FFI`, a logger and some basic code used | ||
by the unittests. | ||
The core package is used internally by pywincffi. See the documentation | ||
for each module for more information. | ||
""" |
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 |
---|---|---|
|
@@ -7,3 +7,7 @@ | |
; error | ||
; critical | ||
log_level=warning | ||
|
||
; Used by release tools to interact with GitHub's | ||
; APIs. | ||
github_token= |
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,6 +1,7 @@ | ||
""" | ||
Dev | ||
==== | ||
Development Sub-Package | ||
======================= | ||
This package is used for development, testing and release purposes. It | ||
does not contain core functionality of pywincffi. | ||
""" |
Oops, something went wrong.