forked from JasonWildMe/wbia-plugin-whaleridgefindr
-
-
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.
- Loading branch information
Tamil
committed
Aug 28, 2023
1 parent
0c0ebf1
commit 3728eb0
Showing
4 changed files
with
34 additions
and
34 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 |
---|---|---|
|
@@ -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_whaleridgefindr/__init__.py'): | ||
""" | ||
Statically parse the version number from a python file | ||
|
@@ -180,7 +180,7 @@ def gen_packages_items(): | |
AUTHOR_EMAIL = '[email protected]' | ||
URL = 'https://github.com/WildbookOrg/wbia-plugin-whaleridgefindr' | ||
LICENSE = 'Apache Version 2.0' | ||
DESCRIPTION = 'wbia-whaleridgefindr - A plug-in for the finFindR gray whale ID algorithm' | ||
DESCRIPTION = 'wbia_whaleridgefindr - A plug-in for the finFindR gray whale 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_whaleridgefindr/_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_whaleridgefindr': 'wbia_whaleridgefindr'}, | ||
include_package_data=False, | ||
# List of classifiers available at: | ||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
try: | ||
from wbia_whaleridgefindr._version import __version__ | ||
except ImportError: | ||
__version__ = '0.1.1' | ||
|
||
from wbia_whaleridgefindr import _plugin # NOQA |
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