| #! /usr/bin/env python |
| # |
| # Copyright (C) 2014-2015 Linaro Limited |
| # |
| # Author: Steve McIntyre <steve.mcintyre@linaro.org> |
| # |
| # This file is part of VLANd |
| # |
| # VLANd is free software; you can redistribute it and/or modify it |
| # under the terms of the GNU General Public License as published by |
| # the Free Software Foundation; either version 2 of the License, or |
| # (at your option) any later version. |
| # |
| # VLANd is distributed in the hope that it will be useful, but WITHOUT |
| # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public |
| # License for more details. |
| # |
| # You should have received a copy of the GNU General Public License |
| # along with this program; if not, see <http://www.gnu.org/licenses>. |
| |
| from setuptools import setup, find_packages |
| |
| setup( |
| name='vland', |
| version="0.5-DEV", |
| author="Steve McIntyre", |
| author_email="vland-devel@linaro.org", |
| license="GPL2+", |
| description="VLAN daemon - complex networks on demand", |
| packages=find_packages(), |
| install_requires=[ |
| 'psycopg2' |
| ], |
| data_files=[ |
| ("/etc/", ["vland.cfg"]) |
| ], |
| scripts=[ |
| ], |
| zip_safe=False, |
| include_package_data=True) |