-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf22117
commit dcc5fda
Showing
1 changed file
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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', | ||
) |