Compare commits

..

1 Commits

Author SHA1 Message Date
Thomas Klaehn
664c1c3189 config: Move config file 2021-04-06 07:50:18 +02:00

View File

@ -1,3 +1,6 @@
import shutil
import sys
import os
from setuptools import setup
NAME = 'Greenhouse'
@ -13,3 +16,11 @@ PACKAGE_DATA = {'greenhouse': ['templates/*', 'static/css/*', 'static/scripts/*'
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)
if sys.argv[1] == 'install':
try:
os.makedirs(CONFIG_FOLDER)
shutil.copyfile(CONFIG_FILE, os.path.join(CONFIG_FOLDER, CONFIG_FILE))
except FileExistsError:
#FIXME: handle overwriting the config file
pass