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 41 42 43 44 45 46
|
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='vulndb',
version=open(join(dirname(__file__), 'vulndb', 'version.txt')).read().strip(),
license='BSD 3-clause',
platforms='Linux',
description='Provides access to the vulndb information',
long_description=open(join(dirname(__file__), 'README.rst')).read(),
long_description_content_type='text/x-rst',
author='Andres Riancho',
author_email='self@andresriancho.com',
url='https://github.com/vulndb/python-sdk/',
packages=[p for p in find_packages() if p.startswith('vulndb')],
include_package_data=True,
install_requires=[],
# With setuptools_git we make sure that the contents of vulndb/db/ , which
# are non source code files, get copied too
setup_requires=['setuptools_git >= 1.1'],
zip_safe=False,
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Security'
],
)
|