-
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.
Making Publishing GH action work (#9)
Fixed GH action + setup.py
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
from setuptools import setup, find_namespace_packages | ||
|
||
version = "0.0.9" | ||
version = "0.0.6" | ||
|
||
setup( | ||
name="metaflow-deepspeed", | ||
version=version, | ||
description="An EXPERIMENTAL Deepspeed decorator for Metaflow", | ||
author="Eddie Mattia", | ||
author_email="[email protected]", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
packages=find_namespace_packages(include=["metaflow_extensions.*"]), | ||
py_modules=[ | ||
"metaflow_extensions", | ||
|