-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.57 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.57 KB
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
#!/usr/bin/env python
"""Python setup file to install the blockade toolset."""
from setuptools import setup, find_packages
setup(
name='blockade-toolkit',
version='1.1.5',
description='Analyst client for administering Blockade.io',
url="https://github.com/blockadeio/analyst_toolbench",
author="Brandon Dixon",
author_email="info@blockade.io",
license="GPLv2",
packages=find_packages(),
install_requires=['requests', 'ez_setup', 'future', 'grequests',
'tldextract', 'boto3'],
long_description="Blockade brings antivirus-like capabilities to users who run the Chrome browser. Built as an extension, Blockade blocks malicious resources from being viewed or loaded inside of the browser.",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
],
entry_points={
'console_scripts': [
'blockade-cfg = blockade.cli.config:main',
'blockade-aws-deploy = blockade.cli.aws_serverless:main',
'blockade = blockade.cli.client:main'
],
},
package_data={
'blockade-toolkit': [],
'': ['*.zip']
},
include_package_data=True,
zip_safe=False,
keywords=['threats', 'research', 'analysis', 'information security'],
download_url='https://github.com/blockadeio/analyst_toolbench/archive/master.zip'
)