1#!/usr/bin/env python
2
3from setuptools import setup, find_packages
4from os.path import join, dirname
5
6
7setup(
8    name='vulndb',
9
10    version=open(join(dirname(__file__), 'vulndb', 'version.txt')).read().strip(),
11    license='BSD 3-clause',
12    platforms='Linux',
13
14    description='Provides access to the vulndb information',
15    long_description=open(join(dirname(__file__), 'README.rst')).read(),
16
17    author='Andres Riancho',
18    author_email='andres@tagcube.io',
19    url='https://github.com/vulndb/python-sdk/',
20
21    packages=[p for p in find_packages() if p.startswith('vulndb')],
22    include_package_data=True,
23
24    install_requires=[],
25
26    # With setuptools_git we make sure that the contents of vulndb/db/ , which
27    # are non source code files, get copied too
28    setup_requires=['setuptools_git >= 1.1'],
29    zip_safe=False,
30
31    # https://pypi.python.org/pypi?%3Aaction=list_classifiers
32    classifiers=[
33        'Development Status :: 5 - Production/Stable',
34        'Intended Audience :: Developers',
35        'License :: OSI Approved :: BSD License',
36        'Natural Language :: English',
37        'Operating System :: POSIX :: Linux',
38        'Operating System :: Microsoft :: Windows',
39        'Programming Language :: Python',
40        'Programming Language :: Python :: 2.7',
41        'Topic :: Security'
42    ],
43)
44
45