-
Notifications
You must be signed in to change notification settings - Fork 13
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 #29 from pcubillos/packaging
Packaging
- Loading branch information
Showing
15 changed files
with
198 additions
and
95 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
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,14 @@ | ||
# Copyright (c) 2018-2019 Patricio Cubillos and contributors. | ||
# bibmanager is open-source software under the MIT license (see LICENSE). | ||
|
||
from .ads_manager import * | ||
from .ads_manager import __all__ | ||
|
||
|
||
# Clean up top-level namespace--delete everything that isn't in __all__ | ||
# or is a magic attribute, and that isn't a submodule of this package | ||
for varname in dir(): | ||
if not ((varname.startswith('__') and varname.endswith('__')) or | ||
varname in __all__ ): | ||
del locals()[varname] | ||
del(varname) |
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,14 @@ | ||
# Copyright (c) 2018-2019 Patricio Cubillos and contributors. | ||
# bibmanager is open-source software under the MIT license (see LICENSE). | ||
|
||
from .bib_manager import * | ||
from .bib_manager import __all__ | ||
|
||
|
||
# Clean up top-level namespace--delete everything that isn't in __all__ | ||
# or is a magic attribute, and that isn't a submodule of this package | ||
for varname in dir(): | ||
if not ((varname.startswith('__') and varname.endswith('__')) or | ||
varname in __all__ ): | ||
del locals()[varname] | ||
del(varname) |
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,14 @@ | ||
# Copyright (c) 2018-2019 Patricio Cubillos and contributors. | ||
# bibmanager is open-source software under the MIT license (see LICENSE). | ||
|
||
from .config_manager import * | ||
from .config_manager import __all__ | ||
|
||
|
||
# Clean up top-level namespace--delete everything that isn't in __all__ | ||
# or is a magic attribute, and that isn't a submodule of this package | ||
for varname in dir(): | ||
if not ((varname.startswith('__') and varname.endswith('__')) or | ||
varname in __all__ ): | ||
del locals()[varname] | ||
del(varname) |
Oops, something went wrong.