-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pre-1.1.0 update features (changelist in #467)
- Loading branch information
Showing
41 changed files
with
2,602 additions
and
1,376 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
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
# Get the sleap version | ||
with open(path.join(here, "sleap/version.py")) as f: | ||
version_file = f.read() | ||
sleap_version = re.search("\d.+(?=['\"])", version_file).group(0) | ||
sleap_version = re.search('__version__ = "([0-9\\.a]+)"', version_file).group(1) | ||
|
||
|
||
def get_requirements(require_name=None): | ||
|
@@ -31,11 +31,13 @@ def get_requirements(require_name=None): | |
version=sleap_version, | ||
setup_requires=["setuptools_scm"], | ||
install_requires=get_requirements(), | ||
extras_require={"dev": get_requirements("dev"),}, | ||
description="SLEAP (Social LEAP Estimates Animal Pose) is a deep learning framework for estimating animal pose.", | ||
extras_require={ | ||
"dev": get_requirements("dev"), | ||
}, | ||
description="SLEAP (Social LEAP Estimates Animal Poses) is a deep learning framework for animal pose tracking.", | ||
long_description=long_description, | ||
long_description_content_type="text/x-rst", | ||
author="Talmo Pereira, David Turner, Nat Tabris", | ||
author="Talmo Pereira, Arie Matsliah, David Turner, Nat Tabris", | ||
author_email="[email protected]", | ||
project_urls={ | ||
"Documentation": "https://sleap.ai/#sleap", | ||
|
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
Oops, something went wrong.