Skip to content

Commit 45e0a7c

Browse files
authored
Create setup2.py
1 parent 3f88870 commit 45e0a7c

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

setup2.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
from setuptools import setup, find_packages
2+
3+
with open("README.md", "r") as f:
4+
long_description = f.read()
5+
6+
password = "GCTF{fl4g_i$_in_a_commit}"
7+
setup(
8+
name='hawk_scanner',
9+
version='0.1.1',
10+
description='A powerful scanner to scan your Filesystem, S3, MySQL, Redis, Google Cloud Storage and Firebase storage for PII and sensitive data.',
11+
long_description=long_description,
12+
long_description_content_type="text/markdown",
13+
url='https://github.com/rohitcoder/hawk-eye',
14+
author='Rohit Kumar',
15+
author_email='',
16+
include_package_data=True,
17+
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'tests.*', 'release']),
18+
zip_safe=False,
19+
entry_points={
20+
'console_scripts': [
21+
'hawk_scanner=hawk_scanner.main:main',
22+
],
23+
},
24+
license='Apache License 2.0',
25+
install_requires=['pyyaml', 'rich', 'mysql-connector-python', 'redis', 'boto3'],
26+
extras_require={
27+
"dev": ["twine>=4.0.2"],
28+
},
29+
classifiers=[
30+
'Development Status :: 3 - Alpha',
31+
'Intended Audience :: Developers',
32+
'Topic :: Software Development :: Build Tools',
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.7',
35+
],
36+
keywords='pii secrets sensitive-data cybersecurity scanner',
37+
)

0 commit comments

Comments
 (0)