summaryrefslogtreecommitdiff
path: root/setup.py
blob: e2da5cc9934519e146978d97aaab9a29122a48a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#author=hochikong

from setuptools import setup, find_packages
setup(
    name="vyroute",
    version="0.1",
    packages=find_packages(),

    description="A library for VyOS routing setting",
    long_description="A library for VyOS routing setting",
    author="hochikong",
    author_email="michellehzg@gmail.com",

    license="Apache License2.0",
    platforms="Independant",
)