Skip to content

Commit c1eee71

Browse files
committed
including backends.txt into build
1 parent 9519dbe commit c1eee71

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include requirements.txt
2-
include README.md
2+
include README.md
3+
include example_plugin/backends.txt #change it to your plugin folder

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ tox
5151

5252
With your code done, start adding your info to [setup.py](./setup.py). If you have a more complex structure, you may need to add more configurations to that, so remember to check the [setuptools guide](https://setuptools.pypa.io/en/latest/index.html).
5353

54+
Also, take a look into [Manifest.in](./MANIFEST.in) and change the required lines.
55+
5456
6. Update the [LICENSE](./LICENSE)
5557

5658
The License for plugins is always `MIT`. So before proceeding, remember to update the [LICENSE file](./LICENSE) adding the year and your name.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ def get_long_description():
5454
description="A simple quantum plugin", # describe your plugin
5555
long_description=get_long_description(), # remember to update the README.md file
5656
long_description_content_type="text/markdown",
57+
include_package_data=True
5758
)

0 commit comments

Comments
 (0)