blob: 69ea3e7e046ba5324861643efd91b0015aac4bbc [file] [log] [blame]
# -*-coding: utf-8 -*-
"""Setup for CVE Triager tool"""
from __future__ import print_function
from setuptools import setup
setup(
name='cvetriage',
version='1.0',
description='Triage tool for bugs against Chromium OS',
author='Wanda Mora',
author_email='morawand@chromium.org',
license='BSD-Google',
packages=['cvelib'],
zip_safe=False,
test_suite='tests',
)