-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
24 lines (22 loc) · 880 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
from setuptools import setup, find_packages
setup(
name='bounty-dork',
version='0.0.1',
url='https://github.com/ElNiak/BountyDork',
description='Automated Google Dorking tool for pentesters without API keys.',
long_description=open('README.md').read(),
include_package_data=True,
author='ElNiak',
author_email='christophe.crochet@uclouvain.be',
long_description_content_type='text/markdown',
maintainer='ElNiak',
maintainer_email='christophe.crochet@uclouvain.be',
packages=find_packages(),
package_data={'': ['bounty_dork/dorks/google/*.txt', 'bounty_dork/vpn_proxies/proxies/*.txt', 'bounty_dork/configs/*.txt']},
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)