summaryrefslogtreecommitdiff
path: root/setup.py
blob: bd28d7dbc84f48e09e0dce09d0cca635ba81a220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup

setup(
    name="vyos-http-api-tools",
    version="0.1.0",
    author="VyOS maintainers and contributors",
    author_email="maintainers@vyos.net",
    python_requires=">=3.7",
    license="BSD",
    url="http://www.vyos.io",
    packages=["vyos-http-api-tools"],
    description=("A debian wrapper of packages to support the VyOS http api."),
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Environment :: Web Environment",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License", 
        "Topic :: Internet :: WWW/HTTP",
    ],
)