mirror of
https://codeberg.org/prof_x_pvt_ltd/captive.whump.shanti-portal
synced 2024-08-14 22:46:42 +00:00
14 lines
274 B
Python
14 lines
274 B
Python
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',
|
|
'bottle',
|
|
'sh'
|
|
]
|
|
)
|