forked from RedHatProductSecurity/advisory-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright (c) 2019 Red Hat, Inc.
# Author: Martin Prpič, Red Hat Product Security
# License: LGPLv3+
from setuptools import setup
with open('README.rst', 'r') as f:
description = f.read()
requires = ['beautifulsoup4>=4.0.0']
setup(
name='advisory-parser',
version='1.9',
description='Security flaw parser for upstream security advisories',
long_description=description,
url='https://github.com/mprpic/advisory-parser',
author='Martin Prpič, Red Hat Product Security',
author_email='[email protected]',
license='LGPLv3+',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Security',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='security advisory parser scraper',
packages=['advisory_parser', 'advisory_parser.parsers'],
install_requires=requires,
)