Skip to content

Commit

Permalink
Fixed setup.py error
Browse files Browse the repository at this point in the history
  • Loading branch information
thehackersbrain committed Aug 28, 2021
1 parent b7266d8 commit 5226155
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from setuptools import setup, find_packages

with open('README.md') as readme:
long_description = readme.read().strip()

setup(
name="linkparser",
version="1.0",
Expand All @@ -7,17 +11,10 @@
url="https://github.com/thehackersbrain/linkparser",
author_email="[email protected]",
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['linkparser', 'thehackersbrain',
'hacking', 'web scraping', 'python', 'python3'],
classifiers=[
'Development Status :: 1 - Intial Build',
'Intended Audience :: Hackers',
'Programming Language :: Python :: 3',
'Operating System :: Linux :: Arch Linux',
'Operating System :: Linux :: Kali Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X'
],
packages=find_packages(),
install_requires=['requests', 'rich', 'pyfiglet', 'bs4'],
entry_points={
Expand Down

0 comments on commit 5226155

Please sign in to comment.