-
Notifications
You must be signed in to change notification settings - Fork 52
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
6a2cf16
commit 4571e52
Showing
3 changed files
with
19 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,8 @@ | |
# Note: this will only work if 'README.md' is present in your MANIFEST.in file! | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
try: | ||
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f: | ||
LONG_DESCRIPTION = '\n' + f.read() | ||
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f: | ||
LONG_DESCRIPTION = "\n" + f.read() | ||
except FileNotFoundError: | ||
LONG_DESCRIPTION = DESCRIPTION | ||
|
||
|
@@ -37,11 +37,11 @@ | |
MAINTAINER_EMAIL = "[email protected]" | ||
URL = "https://github.com/ZhiningLiu1998/imbalanced-ensemble" | ||
PROJECT_URLS = { | ||
'Documentation': 'https://imbalanced-ensemble.readthedocs.io/', | ||
'Source': 'https://github.com/ZhiningLiu1998/imbalanced-ensemble', | ||
'Tracker': 'https://github.com/ZhiningLiu1998/imbalanced-ensemble/issues', | ||
'Changelog': 'https://imbalanced-ensemble.readthedocs.io/en/latest/release_history.html', | ||
'Download': 'https://pypi.org/project/imbalanced-ensemble/#files', | ||
"Documentation": "https://imbalanced-ensemble.readthedocs.io/", | ||
"Source": "https://github.com/ZhiningLiu1998/imbalanced-ensemble", | ||
"Tracker": "https://github.com/ZhiningLiu1998/imbalanced-ensemble/issues", | ||
"Changelog": "https://imbalanced-ensemble.readthedocs.io/en/latest/release_history.html", | ||
"Download": "https://pypi.org/project/imbalanced-ensemble/#files", | ||
} | ||
LICENSE = "MIT" | ||
VERSION = __version__ | ||
|
@@ -57,7 +57,6 @@ | |
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
|
@@ -97,7 +96,7 @@ | |
version=VERSION, | ||
project_urls=PROJECT_URLS, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/markdown', | ||
long_description_content_type="text/markdown", | ||
zip_safe=False, # the package can run out of an .egg file | ||
classifiers=CLASSIFIERS, | ||
packages=find_packages(), | ||
|