blob: b2c32e74b6bc55f2d37b2a6e0a58b270952d74c0 [file] [log] [blame]
#! /usr/bin/env python
#
# Copyright (C) 2014 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.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)