forked from blackhatethicalhacking/snallygaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.29 KB
/
setup.py
File metadata and controls
44 lines (40 loc) · 1.29 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
41
42
43
44
#!/usr/bin/env python3
import os
import setuptools
package_name = 'snallygaster'
f = open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8')
readme = f.read()
f.close()
setuptools.setup(
name=package_name,
version="0.0.9",
description="Tool to scan for secret files on HTTP servers",
long_description=readme,
long_description_content_type='text/markdown',
author="Hanno Böck",
author_email='hanno@hboeck.de',
url='https://github.com/hannob/snallygaster',
packages=[],
scripts=['snallygaster'],
python_requires='>=3',
install_requires=[
'urllib3',
'beautifulsoup4',
'dnspython'
],
license="CC0",
zip_safe=True,
keywords=['security', 'vulnerability', 'http'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)