forked from micolous/tollgate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (36 loc) · 985 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="tollgate",
version="3.0.2",
description="Python/Django-based captive portal for LAN parties.",
author="Michael Farrell",
author_email="micolous@gmail.com",
url="https://github.com/micolous/tollgate",
license="AGPL3",
zip_safe=False,
requires=(
'Django (>=1.3)',
'South (>=0.7.4)',
'progressbar (>=2.2)',
'configparser (>=3.2.0)',
'lxml',
'dbus',
'daemon', # not to be confused with python-daemon, an incompatible package
'pytz',
'djangorestframework',
),
packages=find_packages(exclude=['tollgate.settings.local']),
include_package_data=True,
entry_points = {
'console_scripts': [
'tollgate_backend = tollgate.backend.tollgate_backend:main_optparse',
'tollgate_captivity = tollgate.captive_landing.tproxy:main_optparse',
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Network Administrators',
'Operating System :: Linux',
],
)