From 5eeda0eb5aacfb54887411043ed152ad42dc87b6 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Fri, 30 Dec 2016 18:45:39 +0100 Subject: Add initial draft of the python config library. --- python/setup.py | 20 ++++++++++++++++++++ 1 file changed, 20 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 0000000..9181ce0 --- /dev/null +++ b/python/setup.py @@ -0,0 +1,20 @@ +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://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