-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 819 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
25
from setuptools import setup, find_packages
with open('README.md') as readme:
long_description = readme.read().strip()
setup(
name="linkparser",
version="1.0",
description="A Simple Python Package to Extract All Links from a Target Domain or URL.",
author="Gaurav Raj",
url="https://github.com/thehackersbrain/linkparser",
author_email="techw803@gmail.com",
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['linkparser', 'thehackersbrain',
'hacking', 'web scraping', 'python', 'python3'],
packages=find_packages(),
install_requires=['requests', 'rich', 'pyfiglet', 'bs4'],
entry_points={
'console_scripts': ['linkparser = linkparser.linkparser:main']
},
zip_safe=False,
)