diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-08-17 21:42:19 -0400 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-08-17 21:42:19 -0400 |
commit | 8cc396c20398e01f4af76d386d87a38811cead06 (patch) | |
tree | 733de904aa6062bddce67159b602585b6ff099db /python/setup.py | |
parent | 6b3040c5b6cf3a7b545875e646c450cbb96ae8d6 (diff) | |
download | vyos-1x-8cc396c20398e01f4af76d386d87a38811cead06.tar.gz vyos-1x-8cc396c20398e01f4af76d386d87a38811cead06.zip |
T353: add the Python library for reading VyOS config to the new package.
Diffstat (limited to 'python/setup.py')
-rw-r--r-- | python/setup.py | 21 |
1 files changed, 21 insertions, 0 deletions
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", + ], +) + |