-
-
Notifications
You must be signed in to change notification settings - Fork 8
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 #9 from cookiecutter-openedx/mcdaniel_20230330
prep for PyPi publication
- Loading branch information
Showing
82 changed files
with
1,344 additions
and
255 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,27 @@ | ||
# coding=utf-8 | ||
import os | ||
|
||
# Increment this version number to trigger a new release. See | ||
# CHANGELOG.md for information on the versioning scheme. | ||
__version__ = "0.1.3" | ||
|
||
# The version suffix will be appended to the actual version, separated by a | ||
# dash. Use this suffix to differentiate between the actual released version and | ||
# the versions from other branches. For instance: set the suffix to "nightly" in | ||
# the nightly branch. | ||
# The suffix is cleanly separated from the __version__ in this module to avoid | ||
# conflicts when merging branches. | ||
__version_suffix__ = "" | ||
|
||
# The app name will be used to define the name of the default plugin root and | ||
# plugin directory. To avoid conflicts between multiple locally-installed | ||
# versions, if it is defined the version suffix will also be appended to the app | ||
# name. | ||
__app__ = os.environ.get("OPENEDX_PLUGIN_EXAMPLE", "example-plugin") | ||
|
||
# Package version, as installed by pip, does not include the version suffix. | ||
__package_version__ = __version__ | ||
|
||
if __version_suffix__: | ||
__version__ += "-" + __version_suffix__ | ||
__app__ += "-" + __version_suffix__ |
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 +1,2 @@ | ||
# coding=utf-8 | ||
default_app_config = "openedx_plugin.apps.CustomPluginConfig" |
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,3 +1,4 @@ | ||
# coding=utf-8 | ||
""" | ||
written by: Lawrence McDaniel | ||
https://lawrencemcdaniel.com | ||
|
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,3 +1,4 @@ | ||
# coding=utf-8 | ||
""" | ||
written by: Lawrence McDaniel | ||
https://lawrencemcdaniel.com | ||
|
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,3 +1,4 @@ | ||
# coding=utf-8 | ||
""" | ||
written by: Lawrence McDaniel | ||
https://lawrencemcdaniel.com | ||
|
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,3 +1,4 @@ | ||
# coding=utf-8 | ||
""" | ||
written by: Lawrence McDaniel | ||
https://lawrencemcdaniel.com | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# coding=utf-8 | ||
""" | ||
Lawrence McDaniel - https://lawrencemcdaniel.com | ||
Feb-2022 | ||
|
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,3 +1,4 @@ | ||
# coding=utf-8 | ||
from django.core.management.base import BaseCommand | ||
|
||
from ...waffle import waffle_init | ||
|
Oops, something went wrong.