1#!/usr/local/bin/python3.8
2
3"""
4Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
5See the file 'LICENSE' for copying permission
6"""
7
8from setuptools import setup, find_packages
9
10setup(
11    name='sqlmap',
12    version='1.3.12',
13    description='Automatic SQL injection and database takeover tool',
14    long_description=open('README.rst').read(),
15    long_description_content_type='text/x-rst',
16    author='Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar',
17    author_email='bernardo@sqlmap.org, miroslav@sqlmap.org',
18    url='http://sqlmap.org',
19    project_urls={
20        'Documentation': 'https://github.com/sqlmapproject/sqlmap/wiki',
21        'Source': 'https://github.com/sqlmapproject/sqlmap/',
22        'Tracker': 'https://github.com/sqlmapproject/sqlmap/issues',
23    },
24    download_url='https://github.com/sqlmapproject/sqlmap/archive/1.3.12.zip',
25    license='GNU General Public License v2 (GPLv2)',
26    packages=find_packages(),
27    include_package_data=True,
28    zip_safe=False,
29    # https://pypi.python.org/pypi?%3Aaction=list_classifiers
30    classifiers=[
31        'Development Status :: 5 - Production/Stable',
32        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
33        'Natural Language :: English',
34        'Operating System :: OS Independent',
35        'Programming Language :: Python',
36        'Environment :: Console',
37        'Topic :: Database',
38        'Topic :: Security',
39    ],
40    entry_points={
41        'console_scripts': [
42            'sqlmap = sqlmap.sqlmap:main',
43        ],
44    },
45)
46