Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Devashish13 authored Nov 25, 2024
1 parent bf22117 commit dcc5fda
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
version='1.0.0',
author='Devashish Tripathi',
author_email='[email protected]',
#description='RAISING: A supervised deep learning framework for hyperparameter tuning and feature selection',
long_description="This is a simple text",
long_description_content_type='text/markdown', # Specify content type as Markdown
description='RAISING: A supervised deep learning framework for hyperparameter tuning and feature selection',
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"pandas>=1.5.2",
Expand All @@ -23,4 +23,11 @@
"statsmodels>=0.14.0",
"matplotlib>=3.6.2"
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", # Updated license
"Operating System :: OS Independent",
],
license="GPL-3.0-or-later",
python_requires='>=3.9',
)

0 comments on commit dcc5fda

Please sign in to comment.