#! /usr/bin/env python # # Copyright (C) 2014 Linaro Limited # # Author: Steve McIntyre # # 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 . from setuptools import setup, find_packages setup( name='vland', version="0.1", author="Steve McIntyre", author_email="steve.mcintyre@linaro.org", license="GPL2+", description="VLAN daemon - complex networks on demand", packages=find_packages(), install_requires=[ ], data_files=[ ("/etc/", ["vland.cfg"]) ], scripts=[ ], zip_safe=False, include_package_data=True)