blob: c6d12b40a687ca85d56ef6b9c6bfa336903e98f3 [file] [log] [blame]
Steve McIntyre9d897182014-12-22 17:51:08 +00001#! /usr/bin/env python
2#
Steve McIntyrec03d68d2016-03-24 17:38:34 +00003# Copyright (C) 2014-2016 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 McIntyrea6b485d2018-02-02 16:49:55 +000026 version="0.7",
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)