captive.whump.shanti-portal/setup.py

17 lines
327 B
Python
Raw Normal View History

2016-04-05 14:40:37 +00:00
from setuptools import setup, find_packages
setup(
2017-11-17 21:50:30 +00:00
name="portalclientlib",
2016-04-05 14:40:37 +00:00
version="0.1",
2017-11-17 21:50:30 +00:00
description="Captive Portal client lib",
2016-04-05 14:40:37 +00:00
author="Stefan Midjich",
2017-11-17 21:50:30 +00:00
packages=['portalclientlib'],
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
)