forked from Abacus-Group-RTO/pyExploitDb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.54 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.54 KB
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
40
from pathlib import Path
from setuptools import find_packages, setup
README_PATH = Path(__file__).parent / "README.md"
with README_PATH.open(encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pyexploitdb",
version="0.3.26",
author="Shane William Scott",
author_email="shane@shanewilliamscott.com",
description="""An optimized Python3 library to fetch the most recent exploit-database,
create searchable indexes for CVE->EDBID and EDBID -> CVE, and provide
methods to perform searches.""",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Hackman238/pyExploitDb",
project_urls={
"Source": "https://github.com/Hackman238/pyExploitDb",
"Issue Tracker": "https://github.com/Hackman238/pyExploitDb/issues",
},
license="GPL-3.0-only",
packages=find_packages(exclude=("tests", "tests.*")),
package_data={"pyexploitdb": ["*.json"]},
install_requires=["GitPython>=3.1", "requests>=2.28"],
python_requires=">=3.10",
zip_safe=False,
classifiers=(
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
),
)