-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jirka <[email protected]>
- Loading branch information
Showing
5 changed files
with
20 additions
and
52 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 |
---|---|---|
@@ -1,41 +1,4 @@ | ||
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html | ||
graft wheelhouse | ||
|
||
recursive-exclude __pycache__ *.py[cod] *.orig | ||
|
||
# Include the README and CHANGELOG | ||
include *.md | ||
recursive-include src/lightning_utilities *.md | ||
|
||
# Include the license file | ||
include LICENSE | ||
|
||
# Exclude build configs | ||
exclude *.sh | ||
exclude *.toml | ||
exclude *.svg | ||
exclude *.yml | ||
exclude *.yaml | ||
|
||
# exclude tests from package | ||
recursive-exclude tests * | ||
recursive-exclude site * | ||
exclude tests | ||
|
||
# Exclude the documentation files | ||
recursive-exclude docs * | ||
exclude docs | ||
|
||
# Include the Requirements | ||
recursive-include requirements *.txt | ||
|
||
# Exclude Makefile | ||
exclude Makefile | ||
|
||
prune .git | ||
prune .github | ||
prune .circleci | ||
prune notebook* | ||
prune temp* | ||
prune test* | ||
prune benchmark* | ||
include CHANGELOG.md | ||
graft src/lightning_utilities/test | ||
graft requirements | ||
prune src/lightning_utilities/cli |
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,6 +1,6 @@ | ||
import time | ||
|
||
__version__ = "0.4.1" | ||
__version__ = "0.4.2" | ||
__author__ = "Lightning AI et al." | ||
__author_email__ = "[email protected]" | ||
__license__ = "Apache-2.0" | ||
|