-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
30 lines (28 loc) · 992 Bytes
/
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup # type: ignore
setup(
name='pycvesearch',
version='1.2-dev',
url='https://github.com/cve-search/PyCVESearch',
author='Raphaël Vinot',
author_email='[email protected]',
license='Apache v2.0 License',
packages=['pycvesearch'],
description='A python wrapper around cve.circl.lu',
long_description=open('README.md', 'rb').read().decode('UTF-8'),
keywords=['CVE', 'API', 'wrapper'],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
],
tests_requires=['nose'],
test_suite='nose.collector',
install_requires=['requests'],
)