Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MaulikxLakhani authored Aug 1, 2024
1 parent 9e44503 commit 5d8a8d9
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
from setuptools import setup, find_packages

# Read the content of the README file
with open("README.md", "r") as fh:
long_description = fh.read()
# Read the requirements from the requirements.txt file
with open('requirements.txt') as f:
requirements = f.read().splitlines()

# Read the README file for the long description
with open('README.md') as f:
long_description = f.read()

setup(
name="PortScout",
version="0.1.0",
author="Maulik Lakhani",
author_email="maulik@example.com", # Update this to the author's email address
description="A simple port scanning tool",
name='PortScout',
version='0.1.0',
author='Maulik Lakhani',
author_email='your.email@example.com', # Replace with the author's email
description='A high performance network port scanner.',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MaulikxLakhani/PortScout",
long_description_content_type='text/markdown',
url='https://github.com/MaulikxLakhani/PortScout',
packages=find_packages(),
py_modules=["PortScout"],
include_package_data=True,
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.7',
entry_points={
'console_scripts': [
'portscout=PortScout:main',
Expand Down

0 comments on commit 5d8a8d9

Please sign in to comment.