forked from achillean/shodan-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·22 lines (20 loc) · 812 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = 'shodan',
version = '1.6.5',
description = 'Python library and command-line utility for Shodan (https://developer.shodan.io)',
author = 'John Matherly',
author_email = '[email protected]',
url = 'http://github.com/achillean/shodan-python/tree/master',
packages = ['shodan', 'shodan.cli', 'shodan.cli.converter'],
scripts = ['bin/shodan'],
install_requires=["simplejson", "requests>=2.2.1", "click", "click-plugins", "colorama"],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)