-
Notifications
You must be signed in to change notification settings - Fork 0
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 #6 from molssi-seamm/description
Description
- Loading branch information
Showing
13 changed files
with
324 additions
and
75 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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# configure updates globally | ||
# default: all | ||
# allowed: all, insecure, False | ||
update: insecure | ||
|
||
# configure dependency pinning globally | ||
# default: True | ||
# allowed: True, False | ||
pin: False | ||
|
||
# set the default branch | ||
# default: empty, the default branch on GitHub | ||
# branch: dev | ||
|
||
# update schedule | ||
# default: empty | ||
# allowed: "every day", "every week", .. | ||
schedule: "every day" | ||
|
||
# search for requirement files | ||
# default: True | ||
# allowed: True, False | ||
search: False | ||
|
||
# Specify requirement files by hand, default is empty | ||
# default: empty | ||
# allowed: list | ||
requirements: | ||
- requirements_install.txt: | ||
# update insecure only | ||
update: insecure | ||
pin: False | ||
- requirements.txt: | ||
# update all dependencies and pin them | ||
update: all | ||
pin: True | ||
- requirements_dev.txt: | ||
# update insecure only | ||
update: insecure | ||
pin: False | ||
|
||
# add a label to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
# label_prs: update | ||
|
||
# assign users to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
# assignees: | ||
# - carl | ||
# - carlsen | ||
|
||
# configure the branch prefix the bot is using | ||
# default: pyup- | ||
# branch_prefix: pyup/ | ||
|
||
# set a global prefix for PRs | ||
# default: empty | ||
# pr_prefix: "Bug #12345" | ||
|
||
# allow to close stale PRs | ||
# default: True | ||
close_prs: True |
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,2 @@ | ||
loop_step/_version.py | ||
loop_step/*_parameters.py |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""Top-level package for Loop Step.""" | ||
|
||
__author__ = """Paul Saxe""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.0' | ||
""" | ||
loop_step | ||
A step for loops in the SEAMM flowcharts | ||
""" | ||
|
||
# Bring up the classes so that they appear to be directly in | ||
# the loop_step package. | ||
|
@@ -13,3 +12,12 @@ | |
from loop_step.loop_parameters import LoopParameters # noqa: F401 | ||
from loop_step.loop_step import LoopStep # noqa: F401 | ||
from loop_step.tk_loop import TkLoop # noqa: F401 | ||
|
||
# Handle versioneer | ||
from ._version import get_versions | ||
__author__ = """Paul Saxe""" | ||
__email__ = '[email protected]' | ||
versions = get_versions() | ||
__version__ = versions['version'] | ||
__git_revision__ = versions['full-revisionid'] | ||
del get_versions, versions |
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
Oops, something went wrong.