Skip to content

Commit

Permalink
Remove references to -superplugin
Browse files Browse the repository at this point in the history
  • Loading branch information
rixx committed Nov 6, 2023
1 parent f84d77f commit 9ab7ac7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
23 changes: 7 additions & 16 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,22 @@ jobs:
run: cookiecutter . --no-input
- name: Init git repo (required for check-manifest)
run: git config --global user.email "[email protected]" && git config --global user.name "Your Name" && git init && git add . && git commit -m 'Initial commit'
working-directory: pretalx-superplugin
working-directory: pretalx-foobar
- name: Install pretalx
run: pip install pretalx
working-directory: pretalx-superplugin
working-directory: pretalx-foobar
- name: Install Dependencies
run: pip install isort flake8 black docformatter twine check-manifest pytest pytest-django -Ue .
working-directory: pretalx-superplugin
- name: Run isort
run: isort -c .
working-directory: pretalx-superplugin
- name: Run flake8
run: flake8 .
working-directory: pretalx-superplugin
- name: Run black
run: black --check .
working-directory: pretalx-superplugin
working-directory: pretalx-foobar
- name: Run check-manifest
run: check-manifest .
working-directory: pretalx-superplugin
working-directory: pretalx-foobar
- name: Build package
run: python setup.py sdist
working-directory: pretalx-superplugin
working-directory: pretalx-foobar
- name: Check package
run: twine check dist/*
working-directory: pretalx-superplugin
working-directory: pretalx-foobar
- name: Run tests
run: py.test tests
working-directory: pretalx-superplugin
working-directory: pretalx-foobar
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A simple `cookiecutter`_ template to bootstrap a `pretalx`_ plugin.
Usage
-----

Let's pretend you want to create a pretalx plugin called "superplugin".
Let's pretend you want to create a pretalx plugin called "foobar".
First, create a virtual environment and install the ``cookiecutter``
package using pip. Next, use it to bootstrap your project folder::

Expand Down Expand Up @@ -35,7 +35,7 @@ project folder created for you::

Now, change to the newly created directory::

$ cd pretalx-superplugin
$ cd pretalx-foobar

Voilà, there's your plugin structure! See pretalx' `documentation`_ for more info.

Expand Down

0 comments on commit 9ab7ac7

Please sign in to comment.