-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
38 lines (36 loc) · 1.18 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import io
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
desc = f.read()
setup(
name='goblyn',
version=__import__('goblyn').__version__,
description='Goblyn is a Python tool focused to enumeration and capture of website files metadata.',
author='Loseys',
author_email='iphs2@outlook.com',
license='GNU General Public License v3 (GPLv3)',
url='https://github.com/loseys/Goblyn',
packages=find_packages(),
install_requires=[
'requests'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Security',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.9',
],
entry_points={
'console_scripts': [
'goblyn = goblyn.__main__:main'
]
},
keywords=['goblyn', 'pentesting', 'security'],
)