Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python |
| 2 | # |
Steve McIntyre | c03d68d | 2016-03-24 17:38:34 +0000 | [diff] [blame] | 3 | # Copyright (C) 2014-2016 Linaro Limited |
Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 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 | |
| 22 | from setuptools import setup, find_packages |
| 23 | |
| 24 | setup( |
| 25 | name='vland', |
Steve McIntyre | a6b485d | 2018-02-02 16:49:55 +0000 | [diff] [blame^] | 26 | version="0.7", |
Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 27 | author="Steve McIntyre", |
Steve McIntyre | 82f4a60 | 2015-12-24 12:15:34 +0000 | [diff] [blame] | 28 | author_email="vland-devel@linaro.org", |
Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 29 | license="GPL2+", |
| 30 | description="VLAN daemon - complex networks on demand", |
| 31 | packages=find_packages(), |
| 32 | install_requires=[ |
Steve McIntyre | 82f4a60 | 2015-12-24 12:15:34 +0000 | [diff] [blame] | 33 | 'psycopg2' |
Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 34 | ], |
| 35 | data_files=[ |
Neil Williams | e6a0dc3 | 2014-12-22 18:01:23 +0000 | [diff] [blame] | 36 | ("/etc/", ["vland.cfg"]) |
Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 37 | ], |
| 38 | scripts=[ |
| 39 | ], |
| 40 | zip_safe=False, |
| 41 | include_package_data=True) |