-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mainly to avoid cluttering the global namespace with the name "tracing", moved the pynipap module to its own package. The intention is that the package should be fully compatible with the stans-alone module and require no changes to the applications using it.
- Loading branch information
Showing
4 changed files
with
26 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
__version__ = "0.32.5" | ||
__author__ = "Kristian Larsson, Lukas Garberg" | ||
__author_email__= "[email protected], [email protected]" | ||
__copyright__ = "Copyright 2011, Kristian Larsson, Lukas Garberg" | ||
__license__ = "MIT" | ||
__status__ = "Development" | ||
__url__ = "http://SpriteLink.github.io/NIPAP" | ||
|
||
|
||
# This variable holds the URI to the nipap XML-RPC service which will be used. | ||
# It must be set before the Pynipap can be used! | ||
xmlrpc_uri = None | ||
|
||
# If set, the value assigned to the variable below will be used as a bearer | ||
# token. | ||
bearer_token = None | ||
|
||
from .pynipap import * |
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