-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for pypi release, use deepspeed-mii name
- Loading branch information
Showing
3 changed files
with
24 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,18 +63,22 @@ def command_exists(cmd): | |
# None of the above, probably installing from source | ||
version_str += f'+{git_hash}' | ||
|
||
setup( | ||
name='mii', | ||
version=version_str, | ||
description='deepspeed mii', | ||
install_requires=install_requires, | ||
#scripts=[], | ||
extras_require=extras_require, | ||
packages=find_packages(), | ||
classifiers=[ | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9' | ||
'Programming Language :: Python :: 3.10' | ||
]) | ||
setup(name="deepspeed-mii", | ||
version=version_str, | ||
description='deepspeed mii', | ||
author='DeepSpeed Team', | ||
author_email='[email protected]', | ||
url='http://deepspeed.ai', | ||
project_urls={ | ||
'Documentation': 'https://github.com/microsoft/DeepSpeed-MII', | ||
'Source': 'https://github.com/microsoft/DeepSpeed-MII', | ||
}, | ||
install_requires=install_requires, | ||
extras_require=extras_require, | ||
packages=find_packages(), | ||
classifiers=[ | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10' | ||
]) |
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 +1 @@ | ||
0.1.0 | ||
0.0.2 |