-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the conda/setup.py with new versions in
preparaton for conda-forge
- Loading branch information
1 parent
c53d948
commit 02a015c
Showing
10 changed files
with
78 additions
and
86 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include versioneer.py | ||
include menpofit/_version.py | ||
include LICENSE.txt |
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,11 @@ | ||
[run] | ||
branch=True | ||
source=menpofit | ||
omit = | ||
*/_version.* | ||
|
||
[report] | ||
exclude_lines = | ||
raise NotImplementedError | ||
|
||
ignore_errors=True |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: menpofit_rtd | ||
channels: | ||
- menpo | ||
- conda-forge | ||
dependencies: | ||
- python | ||
- setuptools | ||
|
||
- menpo >=0.7,<0.8 | ||
- menpo >=0.9,<0.11 | ||
- scikit-learn | ||
- dlib | ||
- pip: | ||
- sphinx | ||
- sphinx >=2,<3 | ||
- sphinx_rtd_theme | ||
- sphinxmapxrefrole>0.2 | ||
- sphinxmapxrefrole >=0.2 |
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,17 +1,17 @@ | ||
from setuptools import setup, find_packages | ||
import versioneer | ||
|
||
import versioneer | ||
|
||
setup( | ||
name='menpofit', | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
description="Menpo's image feature point localisation (AAMs, SDMs, " | ||
"CLMs)", | ||
author='The Menpo Development Team', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=['menpo>=0.8,<0.9', | ||
'scikit-learn>=0.16'], | ||
tests_require=['nose', 'mock'] | ||
name='menpofit', | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
description="Menpo's image feature point localisation (AAMs, SDMs, CLMs)", | ||
author='The Menpo Development Team', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=['menpo>=0.9.0,<0.11.0', | ||
'scikit-learn>=0.16', | ||
'pandas>=0.24'], | ||
tests_require=['pytest>=5.0', 'mock>=3.0'] | ||
) |