-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
39 lines (35 loc) · 1.13 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
39
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
import io
VERSION = '1.0.3'
DESCRIPTION = 'hfinder'
pwd = path.abspath(path.dirname(__file__))
with io.open(path.join(pwd, "README.md"), encoding="utf-8") as readme:
LONG_DESCRIPTION = readme.read()
setup(
name="hfinder",
version=VERSION,
author="Sébastien Copin",
author_email="[email protected]",
license="GPL-3.0 License",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=["beautifulsoup4","requests","argparse","webdriver-manager","selenium"],
url="https://github.com/cosad3s/hfinder",
keywords=['hostnames', 'cidr', 'asn', 'network', 'discovery', 'osint', 'bugbounty'],
entry_points={
"console_scripts": [
"hfinder = hfinder.__main__:main"
]
},
include_package_data = True,
classifiers= [
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Security",
"Programming Language :: Python :: 3"
]
)