77 lines
2.2 KiB
Python
77 lines
2.2 KiB
Python
# <Octoprint Klipper Plugin>
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
plugin_identifier = "klipper"
|
|
|
|
plugin_package = "octoprint_klipper"
|
|
|
|
plugin_name = "OctoKlipper"
|
|
|
|
plugin_version = "0.3.9rc3"
|
|
|
|
plugin_description = """A plugin for OctoPrint to configure,control and monitor the Klipper 3D printer software."""
|
|
|
|
plugin_author = "thelastWallE"
|
|
|
|
plugin_author_email = "thelastwalle.github@gmail.com"
|
|
|
|
plugin_url = "https://github.com/thelastWallE/OctoprintKlipperPlugin"
|
|
|
|
plugin_license = "AGPLv3"
|
|
|
|
plugin_requires = []
|
|
|
|
plugin_additional_data = []
|
|
|
|
plugin_additional_packages = []
|
|
|
|
plugin_ignored_packages = []
|
|
|
|
additional_setup_parameters = {}
|
|
|
|
########################################################################################################################
|
|
|
|
from setuptools import setup
|
|
|
|
try:
|
|
import octoprint_setuptools
|
|
except:
|
|
print("Could not import OctoPrint's setuptools, are you sure you are running that under "
|
|
"the same python installation that OctoPrint is installed under?")
|
|
import sys
|
|
sys.exit(-1)
|
|
|
|
setup_parameters = octoprint_setuptools.create_plugin_setup_parameters(
|
|
identifier=plugin_identifier,
|
|
package=plugin_package,
|
|
name=plugin_name,
|
|
version=plugin_version,
|
|
description=plugin_description,
|
|
author=plugin_author,
|
|
mail=plugin_author_email,
|
|
url=plugin_url,
|
|
license=plugin_license,
|
|
requires=plugin_requires,
|
|
additional_packages=plugin_additional_packages,
|
|
ignored_packages=plugin_ignored_packages,
|
|
additional_data=plugin_additional_data
|
|
)
|
|
|
|
if len(additional_setup_parameters):
|
|
from octoprint.util import dict_merge
|
|
setup_parameters = dict_merge(setup_parameters, additional_setup_parameters)
|
|
|
|
setup(**setup_parameters)
|