-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathsetup.py
23 lines (22 loc) · 896 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
This file allows installation of this plugin as a python module. See the docs
for setuptools for more information.
"""
from setuptools import setup
setup(
# replace this with the module name you want your plugin to install as
name="example_third_party_plugin",
# replace with your plugin's version - use semantic versioning if possible
version=1,
# this is used in pip to show details about your plugin
description="Example third party plugin for the Linode CLI",
# replace these fields with information about yourself or your organization
author="linode",
author_email="[email protected]",
# in this case, the plugin is a single file, so that file is listed here
# replace with the name of your plugin file, or use ``packages=[]`` to list
# whole python modules to include
py_modules=[
"example_third_party_plugin",
],
)