blob: 8c2daeae7f90b2ade6c8a6236b3db96305f20ddb [file] [log] [blame]
Steve McIntyre9d897182014-12-22 17:51:08 +00001#! /usr/bin/env python
2#
Steve McIntyre94ef65e2015-09-25 01:08:14 +01003# Copyright (C) 2014-2015 Linaro Limited
Steve McIntyre9d897182014-12-22 17:51:08 +00004#
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',
Steve McIntyre00dc61b2015-09-28 02:44:29 +010026 version="0.5-DEV",
Steve McIntyre9d897182014-12-22 17:51:08 +000027 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)