|
1 | 1 | # coding=utf-8 |
2 | 2 |
|
3 | | -######################################################################################################################## |
4 | | -### Do not forget to adjust the following variables to your own plugin. |
5 | 3 |
|
6 | | -# The plugin's identifier, has to be unique |
7 | 4 | plugin_identifier = "cyborgtheme" |
8 | 5 |
|
9 | | -# The plugin's python package, should be "octoprint_<plugin identifier>", has to be unique |
10 | 6 | plugin_package = "octoprint_cyborgtheme" |
11 | 7 |
|
12 | | -# The plugin's human readable name. Can be overwritten within OctoPrint's internal data via __plugin_name__ in the |
13 | | -# plugin module |
14 | 8 | plugin_name = "OctoPrint-CyborgTheme" |
15 | 9 |
|
16 | | -# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module |
17 | | -plugin_version = "0.1.0" |
| 10 | +plugin_version = "0.1.1" |
18 | 11 |
|
19 | | -# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin |
20 | | -# module |
21 | | -plugin_description = """Bootstrap Cyborg theme for octoprint: https://bootswatch.com/2/cyborg/""" |
| 12 | +plugin_description = """Bootstrap Cyborg theme ( https://bootswatch.com/2/cyborg/ ) adapted for octoprint.""" |
22 | 13 |
|
23 | | -# The plugin's author. Can be overwritten within OctoPrint's internal data via __plugin_author__ in the plugin module |
24 | 14 | plugin_author = "ntoff" |
25 | 15 |
|
26 | | -# The plugin's author's mail address. |
27 | 16 | plugin_author_email = "" |
28 | 17 |
|
29 | | -# The plugin's homepage URL. Can be overwritten within OctoPrint's internal data via __plugin_url__ in the plugin module |
30 | 18 | plugin_url = "https://github.com/ntoff/OctoPrint-CyborgTheme" |
31 | 19 |
|
32 | | -# The plugin's license. Can be overwritten within OctoPrint's internal data via __plugin_license__ in the plugin module |
33 | 20 | plugin_license = "AGPLv3" |
34 | 21 |
|
35 | | -# Any additional requirements besides OctoPrint should be listed here |
36 | 22 | plugin_requires = [] |
37 | 23 |
|
38 | 24 | ### -------------------------------------------------------------------------------------------------------------------- |
39 | 25 | ### More advanced options that you usually shouldn't have to touch follow after this point |
40 | 26 | ### -------------------------------------------------------------------------------------------------------------------- |
41 | 27 |
|
42 | | -# Additional package data to install for this plugin. The subfolders "templates", "static" and "translations" will |
43 | | -# already be installed automatically if they exist. |
44 | 28 | plugin_additional_data = [] |
45 | 29 |
|
46 | | -# Any additional python packages you need to install with your plugin that are not contained in <plugin_package>.* |
47 | 30 | plugin_additional_packages = [] |
48 | 31 |
|
49 | | -# Any python packages within <plugin_package>.* you do NOT want to install with your plugin |
50 | 32 | plugin_ignored_packages = [] |
51 | 33 |
|
52 | | -# Additional parameters for the call to setuptools.setup. If your plugin wants to register additional entry points, |
53 | | -# define dependency links or other things like that, this is the place to go. Will be merged recursively with the |
54 | | -# default setup parameters as provided by octoprint_setuptools.create_plugin_setup_parameters using |
55 | | -# octoprint.util.dict_merge. |
56 | | -# |
57 | | -# Example: |
58 | | -# plugin_requires = ["someDependency==dev"] |
59 | | -# additional_setup_parameters = {"dependency_links": ["https://github.com/someUser/someRepo/archive/master.zip#egg=someDependency-dev"]} |
60 | 34 | additional_setup_parameters = {} |
61 | 35 |
|
62 | 36 | ######################################################################################################################## |
|
0 commit comments