OctoprintKlipperPlugin/setup.py

77 lines
2.2 KiB
Python
Raw Permalink Normal View History

# <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/>.
2018-01-23 17:01:58 +03:00
plugin_identifier = "klipper"
plugin_package = "octoprint_klipper"
2018-08-20 16:12:52 +03:00
plugin_name = "OctoKlipper"
2018-01-23 17:01:58 +03:00
2023-02-27 19:52:54 +03:00
plugin_version = "0.3.9.5"
2018-01-23 17:01:58 +03:00
2018-08-09 12:25:28 +03:00
plugin_description = """A plugin for OctoPrint to configure,control and monitor the Klipper 3D printer software."""
2018-01-23 17:01:58 +03:00
plugin_author = "thelastWallE"
2018-01-23 17:01:58 +03:00
plugin_author_email = "thelastwalle.github@gmail.com"
2018-01-23 17:01:58 +03:00
plugin_url = "https://github.com/thelastWallE/OctoprintKlipperPlugin"
2018-01-23 17:01:58 +03:00
plugin_license = "AGPLv3"
2018-03-04 17:57:42 +03:00
plugin_requires = []
2018-01-23 17:01:58 +03:00
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)