Skip to content

Commit

Permalink
working full_feature_vector() commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SurgeArrester committed Feb 2, 2022
1 parent 01fbea7 commit 8de1f9e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ElMD/ElMD.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__copyright__ = "2019, Cameron Hargreaves"
__credits__ = ["https://github.com/Zapaan", "Loïc Séguin-C. <[email protected]>", "https://github.com/Bowserinator/"]
__license__ = "GPL"
__version__ = "0.4.16"
__version__ = "0.4.20"
__maintainer__ = "Cameron Hargreaves"
'''
Expand Down
3 changes: 2 additions & 1 deletion ElMD/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Implementation of Element movers distance for chemical similarity compositions."""
__version__ = "0.4.15"
__version__ = "0.4.20"
from ElMD.ElMD import EMD, ElMD
2 changes: 1 addition & 1 deletion ElMD/test_ElMD.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Basic tests taken from docs (assuming that docs are correct)."""
from numpy.testing import assert_almost_equal, assert_allclose

from ElMD.ElMD import ElMD
from ElMD import ElMD

def test_ElMD():
x = ElMD("CaTiO3")
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
setup(
name = 'ElMD',
packages = ['ElMD'],
version = '0.4.17',
version = '0.4.20',
license='GPL3',
description = 'An implementation of the Element movers distance for chemical similarity of ionic compositions',
author = 'Cameron Hagreaves',
author_email = '[email protected]',
url = 'https://github.com/lrcfmd/ElMD/',
download_url = 'https://github.com/lrcfmd/ElMD/archive/v0.4.17.tar.gz',
download_url = 'https://github.com/lrcfmd/ElMD/archive/v0.4.20.tar.gz',
keywords = ['ChemInformatics', 'Materials Science', 'Machine Learning', 'Materials Representation'],
package_data={"elementFeatures": ["el_lookup/*.json"]},
include_package_data=True,
Expand Down

0 comments on commit 8de1f9e

Please sign in to comment.