-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
30 lines (29 loc) · 822 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
from setuptools import setup, find_packages
setup(
name='sqlmc',
version='1.1.0',
packages=find_packages(),
package_data={'': ['VERSION']},
include_package_data=True,
install_requires=[
'aiohttp',
'beautifulsoup4',
'pyfiglet',
'tabulate'
],
entry_points={
'console_scripts': [
'sqlmc=sqlmc.sqlmc:main',
]
},
author='Miguel Álvarez',
description='SQL Injection Massive Checker for a domain',
license='AGPL-3.0',
url='https://github.com/malvads/sqlmc',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
],
)