blob: b2c32e74b6bc55f2d37b2a6e0a58b270952d74c0 [file] [log] [blame]
Steve McIntyre9d897182014-12-22 17:51:08 +00001#! /usr/bin/env python
2#
3# Copyright (C) 2014 Linaro Limited
4#
5# Author: Steve McIntyre <steve.mcintyre@linaro.org>
6#
7# This file is part of VLANd
8#
9# VLANd is free software; you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
13#
14# VLANd is distributed in the hope that it will be useful, but WITHOUT
15# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
17# License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, see <http://www.gnu.org/licenses>.
21
22from setuptools import setup, find_packages
23
24setup(
25 name='vland',
26 version="0.1",
27 author="Steve McIntyre",
28 author_email="steve.mcintyre@linaro.org",
29 license="GPL2+",
30 description="VLAN daemon - complex networks on demand",
31 packages=find_packages(),
32 install_requires=[
33 ],
34 data_files=[
Neil Williamse6a0dc32014-12-22 18:01:23 +000035 ("/etc/", ["vland.cfg"])
Steve McIntyre9d897182014-12-22 17:51:08 +000036 ],
37 scripts=[
38 ],
39 zip_safe=False,
40 include_package_data=True)