-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from elisemercury/fix-version-bug
Fix version bug
- Loading branch information
Showing
6 changed files
with
11 additions
and
32 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 |
---|---|---|
@@ -1,2 +1 @@ | ||
from AutoClean.version import __version__ | ||
from AutoClean.autoclean import AutoClean |
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
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
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,2 +1 @@ | ||
include autoclean/modules.py | ||
include autoclean/version.py | ||
include autoclean/modules.py |
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 |
---|---|---|
|
@@ -6,20 +6,18 @@ | |
with open(os.path.join(base_dir, "README.md")) as f: | ||
long_description = f.read() | ||
|
||
exec(open('autoclean/version.py').read()) | ||
|
||
setup( | ||
name = 'py-AutoClean', | ||
packages = ['AutoClean'], | ||
version = __version__, | ||
version = 'v1.1.3', | ||
license='MIT', | ||
description = 'AutoClean - Python Package for Automated Preprocessing & Cleaning of Datasets', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author = 'Elise Landman', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/elisemercury/AutoClean', | ||
download_url = 'https://github.com/elisemercury/AutoClean/archive/refs/tags/' + __version__ + '.tar.gz', # change everytime for each new release | ||
download_url = 'https://github.com/elisemercury/AutoClean/archive/refs/tags/v1.1.3.tar.gz', | ||
keywords = ['automated', 'cleaning', 'preprocessing', "autoclean"], | ||
install_requires=[ | ||
'scikit-learn', | ||
|
@@ -28,12 +26,12 @@ | |
'loguru' | ||
], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', #Specify which pyhton versions to support | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
) |