-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge pull request #5 from JasonWildMe/migrate_to_whaleridgef…
- Loading branch information
1 parent
dfcf0df
commit a1b10b8
Showing
12 changed files
with
157 additions
and
157 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -55,7 +55,7 @@ def native_mb_python_tag(plat_impl=None, version_info=None): | |
return mb_tag | ||
|
||
|
||
def parse_version(fpath='wbia_whaleridgefindr/__init__.py'): | ||
def parse_version(fpath='wbia_finfindr/__init__.py'): | ||
""" | ||
Statically parse the version number from a python file | ||
|
@@ -169,7 +169,7 @@ def gen_packages_items(): | |
return packages | ||
|
||
|
||
NAME = 'wbia-whaleridgefindr' | ||
NAME = 'wbia-finfindr' | ||
|
||
|
||
MB_PYTHON_TAG = native_mb_python_tag() # NOQA | ||
|
@@ -178,9 +178,9 @@ def gen_packages_items(): | |
'Jason Parham', | ||
] | ||
AUTHOR_EMAIL = '[email protected]' | ||
URL = 'https://github.com/WildbookOrg/wbia-plugin-whaleridgefindr' | ||
URL = 'https://github.com/WildbookOrg/wbia-plugin-finfindr' | ||
LICENSE = 'Apache Version 2.0' | ||
DESCRIPTION = 'wbia_whaleridgefindr - A plug-in for the finFindR gray whale ID algorithm' | ||
DESCRIPTION = 'wbia_finfindr - A plug-in for the finFindR dolphin ID algorithm' | ||
|
||
KWARGS = OrderedDict( | ||
name=NAME, | ||
|
@@ -203,13 +203,13 @@ def gen_packages_items(): | |
# See https://github.com/pypa/setuptools_scm/ for more information | ||
setup_requires=['setuptools_scm'], | ||
use_scm_version={ | ||
'write_to': 'wbia_whaleridgefindr/_version.py', | ||
'write_to': 'wbia_finfindr/_version.py', | ||
'write_to_template': '__version__ = "{version}"', | ||
'tag_regex': '^(?P<prefix>v)?(?P<version>[^\\+]+)(?P<suffix>.*)?$', | ||
'local_scheme': 'dirty-tag', | ||
}, | ||
packages=find_packages(), | ||
package_dir={'wbia_whaleridgefindr': 'wbia_whaleridgefindr'}, | ||
package_dir={'wbia_finfindr': 'wbia_finfindr'}, | ||
include_package_data=False, | ||
# List of classifiers available at: | ||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
|
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,7 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
try: | ||
from wbia_whaleridgefindr._version import __version__ | ||
from wbia_finfindr._version import __version__ | ||
except ImportError: | ||
__version__ = '0.0.0' | ||
|
||
from wbia_whaleridgefindr import _plugin # NOQA | ||
from wbia_finfindr import _plugin # NOQA |
Oops, something went wrong.