#!/usr/bin/env python # # Usage: # # First, enable the python environment you want to install to, or if installing # system-wide then ensure you're logged in with sufficient permissions # (admin or root to install to system directories) # # installation: # # $ ./setup.py install # # de-installation: # # $ pip uninstall from setuptools import setup __project__ = 'SmileyFace UT4 Server Panel' __version__ = '0.1.0' setup( name = __project__, version = __version__, description = 'Unreal Tournament 4 Server Admin and Control Panel', author = 'Mathew Guest', author_email = 't3h.zavage@gmail.com', url = 'https://git-mirror.zavage-software.com', # Third-party dependencies; will be automatically installed install_requires = ( 'app_skellington' ), # Local packages to be installed (our packages) packages = ( 'smileyface', ), )