-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
105 lines (77 loc) · 3.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# coding=utf-8
import os
import setuptools
###################################################################################################
# The plugin's identifier, has to be unique
plugin_identifier = "OctoPNP"
# 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
plugin_name = "OctoPNP"
# The plugin's version.
# Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.2"
# The plugin's description. Can be overwritten within OctoPrint's
# internal data via __plugin_description__ in the plugin module
plugin_description = "OctoPrint plugin for camera based pick 'n place control"
# The plugin's author.
# Can be overwritten within OctoPrint's internal data via __plugin_author__ in the plugin module
plugin_author = "Florens Wasserfall"
# The plugin's author's mail address.
plugin_author_email = "[email protected]"
# The plugin's homepage URL.
# Can be overwritten within OctoPrint's internal data via __plugin_url__ in the plugin module
plugin_url = "https://github.com/platsch/OctoPNP"
# The plugin's license.
# Can be overwritten within OctoPrint's internal data via __plugin_license__ in the plugin module
plugin_license = "AGPLv3"
# 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 = []
###################################################################################################
def package_data_dirs(source, sub_folders):
dirs = []
for d in sub_folders:
folder = os.path.join(source, d)
if not os.path.exists(folder):
continue
for dirname, _, files in os.walk(folder):
dirname = os.path.relpath(dirname, source)
for f in files:
dirs.append(os.path.join(dirname, f))
return dirs
def params():
# Our metadata, as defined above
# pylint: disable=possibly-unused-variable
name = plugin_name
version = plugin_version
description = plugin_description
author = plugin_author
author_email = plugin_author_email
url = plugin_url
# pylint: disable=redefined-builtin
license = plugin_license
# we only have our plugin package to install
packages = [plugin_package]
# we might have additional data files in sub folders that need to be installed too
package_data = {
plugin_package: package_data_dirs(
plugin_package,
["static", "templates", "translations", "cameras"] + plugin_additional_data,
)
}
include_package_data = True
# If you have any package data that needs to be accessible on the file system,
# such as templates or static assets this plugin is not zip_safe.
zip_safe = False
# Read the requirements from our requirements.txt file
with open("requirements.txt", 'r', encoding='utf-8') as f:
install_requires = f.readlines()
# Hook the plugin into the "octoprint.plugin" entry point, mapping the plugin_identifier
# to the plugin_package. That way OctoPrint will be able to find the plugin and load it.
entry_points = {
"octoprint.plugin": ["%s = %s" % (plugin_identifier, plugin_package)]
}
return locals()
setuptools.setup(**params())