Skip to content

Commit 284ea57

Browse files
committed
Merge branch 'release/0.4.3'
2 parents 82ac4f4 + 68f3634 commit 284ea57

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 Will Mayner
1+
Copyright (c) 2014-2017 Will Mayner
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
include pyemd/emd.cpp
1+
graft pyemd
2+
graft test
3+
4+
include README.rst
5+
include LICENSE
6+
include conftest.py
7+
8+
global-exclude __pycache__ *.py[cod]
9+
global-exclude *.so *.dylib

pyemd/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"""PyEMD metadata"""
66

77
__title__ = 'pyemd'
8-
__version__ = '0.4.2'
8+
__version__ = '0.4.3'
99
__description__ = ("A Python wrapper for Ofir Pele and Michael Werman's "
1010
"implementation of the Earth Mover's Distance.")
1111
__author__ = 'Will Mayner'
1212
__author_email__ = 'wmayner@gmail.com'
1313
__author_website__ = 'http://willmayner.com'
1414
__license__ = 'MIT'
15-
__copyright__ = 'Copyright (c) 2016 Will Mayner'
15+
__copyright__ = 'Copyright (c) 2014-2017 Will Mayner'
1616
__url__ = 'http://github.com/wmayner/pyemd'
1717

1818
__all__ = ['__title__', '__version__', '__description__', '__author__',

pyemd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
easy to write.
6060
6161
62-
:copyright: Copyright (c) 2016 by Will Mayner.
62+
:copyright: Copyright (c) 2014-2017 Will Mayner.
6363
:license: See the LICENSE file.
6464
"""
6565

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ def no_cythonize(extensions, **_ignore):
8888
url=about['__url__'],
8989
license=about['__license__'],
9090
packages=['pyemd'],
91-
package_data={'pyemd': ['emd.pyx', 'lib/*.hpp', '../README.rst']},
9291
install_requires=requires,
9392
cmdclass=cmdclass,
9493
setup_requires=requires,

0 commit comments

Comments
 (0)