Skip to content

Commit

Permalink
Merge branch 'release/0.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
wmayner committed Mar 4, 2017
2 parents 82ac4f4 + 68f3634 commit 284ea57
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014 Will Mayner
Copyright (c) 2014-2017 Will Mayner

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 9 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
include pyemd/emd.cpp
graft pyemd
graft test

include README.rst
include LICENSE
include conftest.py

global-exclude __pycache__ *.py[cod]
global-exclude *.so *.dylib
4 changes: 2 additions & 2 deletions pyemd/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"""PyEMD metadata"""

__title__ = 'pyemd'
__version__ = '0.4.2'
__version__ = '0.4.3'
__description__ = ("A Python wrapper for Ofir Pele and Michael Werman's "
"implementation of the Earth Mover's Distance.")
__author__ = 'Will Mayner'
__author_email__ = '[email protected]'
__author_website__ = 'http://willmayner.com'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2016 Will Mayner'
__copyright__ = 'Copyright (c) 2014-2017 Will Mayner'
__url__ = 'http://github.com/wmayner/pyemd'

__all__ = ['__title__', '__version__', '__description__', '__author__',
Expand Down
2 changes: 1 addition & 1 deletion pyemd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
easy to write.
:copyright: Copyright (c) 2016 by Will Mayner.
:copyright: Copyright (c) 2014-2017 Will Mayner.
:license: See the LICENSE file.
"""

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ def no_cythonize(extensions, **_ignore):
url=about['__url__'],
license=about['__license__'],
packages=['pyemd'],
package_data={'pyemd': ['emd.pyx', 'lib/*.hpp', '../README.rst']},
install_requires=requires,
cmdclass=cmdclass,
setup_requires=requires,
Expand Down

0 comments on commit 284ea57

Please sign in to comment.