-
Notifications
You must be signed in to change notification settings - Fork 1
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
adnankarol
authored and
adnankarol
committed
Aug 1, 2024
1 parent
0f85552
commit 6794647
Showing
6 changed files
with
397 additions
and
36 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
__author__ = "Adnan Karol" | ||
__version__ = "1.0.4" | ||
__version__ = "1.0.7" | ||
__maintainer__ = "Adnan Karol" | ||
__email__ = "[email protected]" | ||
__status__ = "PROD" | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
__author__ = "Adnan Karol" | ||
__version__ = "1.0.4" | ||
__version__ = "1.0.7" | ||
__maintainer__ = "Adnan Karol" | ||
__email__ = "[email protected]" | ||
__status__ = "PROD" | ||
|
@@ -18,7 +18,7 @@ def parse_requirements(filename): | |
|
||
setup( | ||
name='classifierAgent', | ||
version='1.0.4', # Updated version number | ||
version='1.0.7', # Updated version number | ||
description='A Python package for performing classification on datasets in CSV or Excel format.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|
@@ -37,15 +37,5 @@ def parse_requirements(filename): | |
], | ||
python_requires='>=3.10', | ||
packages=find_packages(), # Automatically find packages in the directory | ||
install_requires=parse_requirements('requirements.txt'), | ||
entry_points={ | ||
'console_scripts': [ | ||
'classifierAgent=classifierAgent.cli:main', | ||
], | ||
}, | ||
project_urls={ | ||
'Documentation': 'https://github.com/adnanmushtaq1996/ML-Classifier-Python-Package', | ||
'Source': 'https://github.com/adnanmushtaq1996/ML-Classifier-Python-Package', | ||
'Tracker': 'https://github.com/adnanmushtaq1996/ML-Classifier-Python-Package/issues', | ||
}, | ||
install_requires=parse_requirements('requirements.txt') | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.