-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
39 lines (34 loc) · 1.35 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
38
39
# 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", "cvss>=2.0"]
setup(
name="advisory-parser",
version="1.13",
description="Security flaw parser for upstream security advisories",
long_description=description,
url="https://github.com/RedHatProductSecurity/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 :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="security advisory parser scraper",
packages=["advisory_parser", "advisory_parser.parsers"],
install_requires=requires,
)