64157b00e0
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
|
|
import os
|
|
import shutil
|
|
import stat
|
|
from setuptools import setup
|
|
from setuptools.command.install import install
|
|
|
|
NAME = 'home'
|
|
VERSION = '2'
|
|
AUTHOR = 'Thomas Klaehn'
|
|
EMAIL = 'tkl@blackfinn.de'
|
|
PACKAGES = ['home']
|
|
REQUIRES = ['Flask', 'gunicorn']
|
|
|
|
CONFIG_FILE = 'config.json'
|
|
PACKAGE_DATA = {'home': ['config.json', 'templates/*', 'static/css/*', 'static/scripts/*']}
|
|
|
|
SERVICEDIR = "/lib/systemd/system"
|
|
DAEMON_START_SCRIPT = os.path.join(SERVICEDIR, 'home.service')
|
|
|
|
LOGFILE = "/var/log/home.log"
|
|
|
|
class Install(install):
|
|
"""Installer"""
|
|
def run(self):
|
|
install.run(self)
|
|
os.makedirs(SERVICEDIR, exist_ok=True)
|
|
shutil.copyfile('home.service', os.path.join(SERVICEDIR, DAEMON_START_SCRIPT))
|
|
os.chmod(DAEMON_START_SCRIPT, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH)
|
|
|
|
try:
|
|
open(LOGFILE, 'r', encoding="UTF-8")
|
|
except FileNotFoundError:
|
|
os.makedirs(os.path.dirname(LOGFILE), exist_ok=True)
|
|
open(LOGFILE, 'x', encoding="UTF-8")
|
|
os.chmod(LOGFILE, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP | stat.S_IROTH | stat.S_IWOTH)
|
|
|
|
setup(name=NAME, version=VERSION, long_description=__doc__, author=AUTHOR, author_email=EMAIL,
|
|
packages=PACKAGES, include_package_data=True, package_data=PACKAGE_DATA, zip_safe=False,
|
|
install_requires=REQUIRES,
|
|
cmdclass={
|
|
'install': Install
|
|
}
|
|
)
|