forked from malnvenshorn/OctoPrint-MetadataPreprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (45 loc) · 1.83 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# coding=utf-8
from setuptools import setup
########################################################################################################################
plugin_identifier = "metadatapreprocessor"
plugin_package = "octoprint_metadatapreprocessor"
plugin_name = "OctoPrint-MetadataPreprocessor"
plugin_version = "0.2.1"
plugin_description = """Uses metadata comments in gcode files to speed up the analyzing process on systems with
limited resources like the raspberry pi """
plugin_author = "awenelo"
plugin_author_email = ""
plugin_url = "https://github.com/awenelo/OctoPrint-MetadataPreprocessor"
plugin_license = "AGPLv3"
plugin_requires = []
plugin_additional_data = []
plugin_additional_packages = []
plugin_ignored_packages = []
additional_setup_parameters = {}
########################################################################################################################
try:
import octoprint_setuptools
except ImportError:
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)