-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
working full_feature_vector() commit
- Loading branch information
1 parent
01fbea7
commit 8de1f9e
Showing
4 changed files
with
6 additions
and
5 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 |
---|---|---|
|
@@ -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" | ||
''' | ||
|
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 @@ | ||
"""Implementation of Element movers distance for chemical similarity compositions.""" | ||
__version__ = "0.4.15" | ||
__version__ = "0.4.20" | ||
from ElMD.ElMD import EMD, ElMD |
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 |
---|---|---|
|
@@ -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, | ||
|