captive.whump.shanti-portal/setup.py

17 lines
318 B
Python
Raw Normal View History

2016-04-05 14:40:37 +00:00
from setuptools import setup, find_packages
setup(
name="CaptivePortal",
version="0.1",
description="Captive Portal webpage",
author="Stefan Midjich",
packages=find_packages(),
install_requires=[
'rq',
2016-04-16 14:49:39 +00:00
'bottle',
2016-12-22 14:40:48 +00:00
'sh',
'redis',
'python-iptables'
]
2016-04-05 14:40:37 +00:00
)