diff options
author | Chandan Singh <chandan@chandansingh.net> | 2020-01-17 11:30:41 +0000 |
---|---|---|
committer | Chandan Singh <chandan@chandansingh.net> | 2020-01-17 15:50:51 +0000 |
commit | f7f247a5e7973e0b12772f3b5d9353a1de8c485d (patch) | |
tree | eea8d8f6c88c31a6b484bea3d13f9a062efe2323 | |
parent | 418ab6b79f1332b7df89c2849f636d47f4d08178 (diff) | |
download | buildstream-f7f247a5e7973e0b12772f3b5d9353a1de8c485d.tar.gz |
doc/sample_plugin: Update name of entry point group
Update sample plugin documentation based on the recent change to entry
point group for plugins.
While I'm here, also remove the unnecessary dependency on `setuptools`
from the sample plugin.
-rw-r--r-- | doc/source/sample_plugin/setup.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/source/sample_plugin/setup.py b/doc/source/sample_plugin/setup.py index 7ea0e1ef3..4e2e789f9 100644 --- a/doc/source/sample_plugin/setup.py +++ b/doc/source/sample_plugin/setup.py @@ -4,12 +4,9 @@ setup(name='BuildStream Autotools', version="0.1", description="A better autotools element for BuildStream", packages=find_packages(), - install_requires=[ - 'setuptools' - ], include_package_data=True, entry_points={ - 'buildstream.plugins': [ + 'buildstream.plugins.elements': [ 'autotools = elements.autotools' ] }) |