diff options
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", + ], +) + |