-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the manifest to include more files and bump version number (#24)
- Loading branch information
Showing
2 changed files
with
8 additions
and
3 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,4 +1,9 @@ | ||
include *.txt | ||
include *.md | ||
include LICENSE | ||
recursive-include sesemi *.py | ||
recursive-include sesemi *.yaml | ||
recursive-include sesemi *.md | ||
recursive-include sesemi *.txt | ||
global-exclude *.pyc | ||
global-exclude __pycache__ | ||
global-exclude __pycache__ |
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 |
---|---|---|
|
@@ -11,11 +11,11 @@ | |
|
||
setup( | ||
name="sesemi", | ||
version="0.1.1", | ||
version="0.2.0", | ||
description="Image Classification with Self-Supervised Regularization", | ||
author="Flyreel AI", | ||
author_email="[email protected]", | ||
packages=find_packages(include=["sesemi"]), | ||
packages=find_packages(include=["sesemi*"]), | ||
entry_points={"console_scripts": ["open_sesemi = sesemi.trainer.cli:open_sesemi"]}, | ||
url="https://github.com/FlyreelAI/sesemi/", | ||
include_package_data=True, | ||
|