blob: 836b351659f30df3aa555a741b9beed6f3c734d1 [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",
Steve McIntyre82f4a602015-12-24 12:15:34 +000028 author_email="vland-devel@linaro.org",
Steve McIntyre9d897182014-12-22 17:51:08 +000029 license="GPL2+",
30 description="VLAN daemon - complex networks on demand",
31 packages=find_packages(),
32 install_requires=[
Steve McIntyre82f4a602015-12-24 12:15:34 +000033 'psycopg2'
Steve McIntyre9d897182014-12-22 17:51:08 +000034 ],
35 data_files=[
Neil Williamse6a0dc32014-12-22 18:01:23 +000036 ("/etc/", ["vland.cfg"])
Steve McIntyre9d897182014-12-22 17:51:08 +000037 ],
38 scripts=[
39 ],
40 zip_safe=False,
41 include_package_data=True)