46 lines
953 B
Python
Executable File
46 lines
953 B
Python
Executable File
#!/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 <app>
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
__project__ = 'app_skellington'
|
|
__version__ = '0.1.0'
|
|
|
|
setup(
|
|
name = __project__,
|
|
version = __version__,
|
|
description = 'A high-powered 2-level CLI framework',
|
|
author = 'Mathew Guest',
|
|
author_email = 'mathewguest@gmail.com',
|
|
url = 'https://git-mirror.zavage-software.com',
|
|
|
|
# Third-party dependencies; will be automatically installed
|
|
install_requires = (
|
|
'appdirs',
|
|
'configobj',
|
|
'colorlog',
|
|
'pprint',
|
|
),
|
|
|
|
# Local packages to be installed (our packages)
|
|
packages = (
|
|
'app_skellington',
|
|
),
|
|
|
|
)
|
|
|