From 8cc396c20398e01f4af76d386d87a38811cead06 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Thu, 17 Aug 2017 21:42:19 -0400 Subject: T353: add the Python library for reading VyOS config to the new package. --- python/setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 python/setup.py (limited to 'python/setup.py') diff --git a/python/setup.py b/python/setup.py new file mode 100644 index 000000000..667d74c1d --- /dev/null +++ b/python/setup.py @@ -0,0 +1,21 @@ +import os +from setuptools import setup + +setup( + name = "vyos", + version = "1.2.0", + author = "VyOS maintainers and contributors", + author_email = "maintainers@vyos.net", + description = ("VyOS configuration libraries."), + license = "MIT", + keywords = "vyos", + url = "http://www.vyos.io", + packages=['vyos'], + long_description="VyOS configuration libraries", + classifiers=[ + "Development Status :: 3 - Alpha", + "Topic :: Utilities", + "License :: OSI Approved :: MIT License", + ], +) + -- cgit v1.2.3