captive.whump.shanti-portal/setup.py

17 lines
327 B
Python

from setuptools import setup, find_packages
setup(
name="portalclientlib",
version="0.1",
description="Captive Portal client lib",
author="Stefan Midjich",
packages=['portalclientlib'],
install_requires=[
'rq',
'bottle',
'sh',
'redis',
'python-iptables'
]
)