mirror of
https://git.zavage.net/Zavage-Software/wabot.git
synced 2025-01-06 16:39:21 -07:00
45 lines
878 B
Python
Executable File
45 lines
878 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__ = 'WaBoT'
|
|
__version__ = '0.1.0'
|
|
|
|
setup(
|
|
name = __project__,
|
|
version = __version__,
|
|
description = '',
|
|
author = 'Mathew Guest',
|
|
author_email = 't3h.zavage@gmail.com',
|
|
|
|
# Third-party dependencies; will be automatically installed
|
|
install_requires = (
|
|
'dill',
|
|
'selenium',
|
|
),
|
|
|
|
# Local packages to be installed (our packages)
|
|
packages = (
|
|
'wabot',
|
|
),
|
|
|
|
# Binaries/Executables to be installed to system
|
|
scripts=()
|
|
)
|
|
|