blob: 0c2f82ebc4b225d349ab5851bd24d575599bfb01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (c) 2016 Hochikong
from setuptools import setup, find_packages
setup(
name="vymgmt",
version="0.1",
packages=find_packages(),
install_requires=['pexpect'],
description="A library for VyOS configurations",
long_description="A library for VyOS configurations",
author="Hochikong",
author_email="hochikong@foxmail.com",
license="MIT",
keywords="A library for VyOS configurations",
url="https://github.com/vyos/python-vyos-mgmt"
)
|