2015-01-27 11:25:05 +00:00
|
|
|
# coding=utf-8
|
|
|
|
|
|
|
|
########################################################################################################################
|
|
|
|
### Do not forget to adjust the following variables to your own plugin.
|
|
|
|
|
|
|
|
# The plugin's identifier, has to be unique
|
2017-11-06 23:58:01 +00:00
|
|
|
plugin_identifier = "auth_ldap"
|
2015-01-27 11:25:05 +00:00
|
|
|
|
|
|
|
# The plugin's python package, should be "octoprint_<plugin identifier>", has to be unique
|
|
|
|
plugin_package = "octoprint_%s" % plugin_identifier
|
|
|
|
|
|
|
|
# The plugin's human readable name. Can be overwritten within OctoPrint's internal data via __plugin_name__ in the
|
|
|
|
# plugin module
|
2017-11-06 23:58:01 +00:00
|
|
|
plugin_name = "OctoPrint-LDAP"
|
2015-01-27 11:25:05 +00:00
|
|
|
|
|
|
|
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
2017-11-07 23:35:38 +00:00
|
|
|
plugin_version = "1.0.0"
|
2015-01-27 11:25:05 +00:00
|
|
|
|
|
|
|
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
|
|
|
# module
|
2017-11-07 23:35:38 +00:00
|
|
|
plugin_description = "LDAP Auth provider"
|
2015-01-27 11:25:05 +00:00
|
|
|
|
|
|
|
# The plugin's author. Can be overwritten within OctoPrint's internal data via __plugin_author__ in the plugin module
|
2020-02-15 00:09:11 +00:00
|
|
|
plugin_author = "Cameron Sharp, Ben Casling, Feat. Guillaume GILL"
|
2015-01-27 11:25:05 +00:00
|
|
|
|
|
|
|
# The plugin's author's mail address.
|
2020-02-15 00:09:11 +00:00
|
|
|
plugin_author_email = "me@cazagen.me, ben@casling.io"
|
2015-01-27 11:25:05 +00:00
|
|
|
|
|
|
|
# The plugin's homepage URL. Can be overwritten within OctoPrint's internal data via __plugin_url__ in the plugin module
|
2020-02-15 00:09:11 +00:00
|
|
|
plugin_url = "https://gitea.ehlab.uk/cazagen/octoprint-ldap"
|
2015-01-27 11:25:05 +00:00
|
|
|
|
|
|
|
# The plugin's license. Can be overwritten within OctoPrint's internal data via __plugin_license__ in the plugin module
|
|
|
|
plugin_license = "AGPLv3"
|
|
|
|
|
2015-05-12 15:34:41 +00:00
|
|
|
# Any additional requirements besides OctoPrint should be listed here
|
2019-11-12 00:40:56 +00:00
|
|
|
plugin_requires = ["python-ldap","uuid","ldap3"]
|
2015-05-12 15:34:41 +00:00
|
|
|
|
2015-01-27 11:25:05 +00:00
|
|
|
# Additional package data to install for this plugin. The subfolders "templates", "static" and "translations" will
|
|
|
|
# already be installed automatically if they exist.
|
|
|
|
plugin_additional_data = []
|
|
|
|
|
|
|
|
########################################################################################################################
|
|
|
|
|
2015-05-12 15:34:41 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
try:
|
2015-05-12 18:36:38 +00:00
|
|
|
import octoprint_setuptools
|
2015-05-12 15:34:41 +00:00
|
|
|
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)
|
|
|
|
|
2015-05-12 18:36:38 +00:00
|
|
|
setup(**octoprint_setuptools.create_plugin_setup_parameters(
|
2015-05-12 15:34:41 +00:00
|
|
|
identifier=plugin_identifier,
|
|
|
|
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_data=plugin_additional_data
|
2019-11-12 00:40:56 +00:00
|
|
|
))
|