-
Notifications
You must be signed in to change notification settings - Fork 92
/
setup.py
65 lines (54 loc) · 1.93 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
# coding=utf-8
plugin_identifier = "touchui"
plugin_package = "octoprint_touchui"
plugin_name = "TouchUI"
plugin_version = "0.3.18"
plugin_description = """A touch friendly interface for a small TFT modules and or phones"""
plugin_author = "Paul de Vries"
plugin_author_email = "[email protected]"
plugin_url = "https://github.com/BillyBlaze/OctoPrint-TouchUI"
plugin_license = "AGPLv3"
plugin_requires = ["OctoPrint>=1.2.4"]
plugin_additional_data = []
plugin_addtional_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_addtional_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)
try:
import os
fileOut = "./octoprint_touchui/WHATSNEW.md"
fileIn = "./WHATSNEW.md"
if os.path.isfile(fileOut):
os.unlink(fileOut)
with open(fileIn, 'r') as contentFile:
whatsNew = contentFile.read()
with open(fileOut, "w+") as writeFile:
writeFile.write('{WHATSNEW}'.format(WHATSNEW=whatsNew))
except Exception as e:
print("\nCopying the WHATSNEW.md failed, however it shouldn't matter, just read the release notes on github if you like.\nThe error: {message}".format(message=str(e)))