Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Refactor plugin template #1

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Contributing

We welcome contributions - simply fork the Plugin Name repository, and then make a
`pull request <https://help.github.com/articles/about-pull-requests/>`_ containing your contribution.
All contributers to PennyLane-SF will be listed as authors on the releases.
All contributers to Plugin-Name will be listed as authors on the releases.
johannesjmeyer marked this conversation as resolved.
Show resolved Hide resolved

We also encourage bug reports, suggestions for new features and enhancements, and even links to cool
projects or applications built on PennyLane and Target Framework.
Expand All @@ -86,7 +86,7 @@ Support
=======

- **Source Code:** https://github.com/XanaduAI/plugin-name
- **Issue Tracker:** https://github.com/XanaduAI/plugin-namesf/issues
- **Issue Tracker:** https://github.com/XanaduAI/plugin-name/issues

If you are having issues, please let us know by posting the issue on our GitHub issue tracker.

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# |version| and |release|, also used in various other places throughout the
# built documents.

import pennylane_forest
import plugin_name
johannesjmeyer marked this conversation as resolved.
Show resolved Hide resolved
# The full version, including alpha/beta/rc tags.
release = pennylane_forest.__version__
release = plugin_name.__version__

# The short X.Y version.
version = re.match(r'^(\d+\.\d+)', release).expand(r'\1')
Expand Down
4 changes: 2 additions & 2 deletions plugin_name/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
Custom operations
=================

**Module name:** :mod:`pennylane_forest.ops`
**Module name:** :mod:`plugin_name.ops`

.. currentmodule:: pennylane_forest.ops
.. currentmodule:: plugin_name.ops

Sometimes the Target Framework may accept more operations
than available by core PennyLane. The plugin can define
Expand Down
Loading