forked from vehemont/nvdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 708 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 708 Bytes
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
import pathlib
from setuptools import find_packages, setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name='nvdlib',
packages=find_packages(include=['nvdlib']),
version='0.7.6',
install_requires = ['requests'],
extras_require={
"dev": [
"responses==0.18.0",
"pytest==7.0.1",
]
},
python_requires='>3.7.9',
description='National Vulnerability Database CPE/CVE API Library for Python',
author='Vehemont',
author_email="brad@nvdlib.com",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Vehemont/nvdlib/",
license='MIT',
)