# -*- coding: utf-8 -*-
# setup.py
# Part of ‘python-daemon’, an implementation of PEP 3143.
#
# Copyright © 2008–2015 Ben Finney <ben+python@benfinney.id.au>
# Copyright © 2008 Robert Niederreiter, Jens Klein
#
# This is free software: you may copy, modify, and/or distribute this work
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; version 3 of that license or any later version.
# No warranty expressed or implied. See the file ‘LICENSE.GPL-3’ for details.
""" Distribution setup for ‘python-daemon’ library. """
from __future__ import (absolute_import, unicode_literals)
import sys
import os
import os.path
import pydoc
import distutils.util
from setuptools import (setup, find_packages)
import version
fromlist_expects_type = str
if sys.version_info < (3, 0):
fromlist_expects_type = bytes
main_module_name = 'daemon'
main_module_fromlist = list(map(fromlist_expects_type, [