aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve McIntyre <steve.mcintyre@linaro.org>2014-12-22 17:51:08 +0000
committerSteve McIntyre <steve.mcintyre@linaro.org>2014-12-22 17:51:08 +0000
commit9d897186f50ecc09bf52ed91924a37c44b717791 (patch)
treeefaeeaac81a14cdf2fa7e4a0dc71b01349580a70
parent4b4ab65d70d610ef5e9fd146d0b5d4590c92fa81 (diff)
Setup for release 0.1
Change-Id: Id9bf8728d84ef2b436303096c9dc7282c650ec16
-rw-r--r--Changelog5
-rw-r--r--README11
-rw-r--r--admin.py2
-rw-r--r--setup.cfg5
-rw-r--r--setup.py40
-rw-r--r--vland.py2
6 files changed, 63 insertions, 2 deletions
diff --git a/Changelog b/Changelog
new file mode 100644
index 0000000..b8a2a1b
--- /dev/null
+++ b/Changelog
@@ -0,0 +1,5 @@
+vland 0.1
+
+ * Initial Release
+
+ -- Steve McIntyre <steve.mcintyre@linaro.org> Mon, 22 Dec 2014 17:49:49 +0000
diff --git a/README b/README
index 2d93d3c..0a8acb0 100644
--- a/README
+++ b/README
@@ -3,3 +3,14 @@ VLANd - complex networks on demand
Dependencies
============
+postgres server and psycopg2, for the backend database. See
+db/setup_db.py for help in setting up the database for access.
+
+For now, things are expected to run as "vland" with appropriate
+permissions in the database for that user.
+
+Really need to write more stuff here... :-)
+
+Steve McIntyre <steve.mcintyre@linaro.org>
+
+VLANd mailing list: vland-devel@linaro.org
diff --git a/admin.py b/admin.py
index b2e8a47..244523f 100644
--- a/admin.py
+++ b/admin.py
@@ -30,7 +30,7 @@ from errors import InputError, SocketError
from config.config import VlanConfig
from ipc.ipc import VlanIpc
-version = "0.0.0-DEV"
+version = "0.1"
banner = "Linaro VLANd admin interface, version %s" % version
def is_positive(text):
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..861a9f5
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,5 @@
+[egg_info]
+tag_build =
+tag_date = 0
+tag_svn_revision = 0
+
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..9439d93
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,40 @@
+#! /usr/bin/env python
+#
+# Copyright (C) 2014 Linaro Limited
+#
+# Author: Steve McIntyre <steve.mcintyre@linaro.org>
+#
+# This file is part of VLANd
+#
+# VLANd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# VLANd is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
+from setuptools import setup, find_packages
+
+setup(
+ name='vland',
+ version="0.1",
+ author="Steve McIntyre",
+ author_email="steve.mcintyre@linaro.org",
+ license="GPL2+",
+ description="VLAN daemon - complex networks on demand",
+ packages=find_packages(),
+ install_requires=[
+ ],
+ data_files=[
+ ("/etc/", ["vland.cfg"]),
+ ],
+ scripts=[
+ ],
+ zip_safe=False,
+ include_package_data=True)
diff --git a/vland.py b/vland.py
index fb649ee..20127bc 100644
--- a/vland.py
+++ b/vland.py
@@ -38,7 +38,7 @@ class DaemonState:
""" Simple container for stuff to make for nicer syntax """
state = DaemonState()
-state.version = "0.0.0-DEV"
+state.version = "0.1"
state.banner = "Linaro VLANd version %s" % state.version
state.starttime = time.time()