Skip to content
Snippets Groups Projects
Commit a4b91514 authored by Markus Scheidgen's avatar Markus Scheidgen
Browse files

Some refactoring necessary for nomad-xt.

parent 93539822
Branches
No related tags found
No related merge requests found
Showing
with 78 additions and 5 deletions
Metadata-Version: 1.0
Name: statsnormalizer
Version: 0.1
Summary: NOMAD Stats Normalizer.
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN
README.md
normalizer/normalizer-stats/statsnormalizer.egg-info/PKG-INFO
normalizer/normalizer-stats/statsnormalizer.egg-info/SOURCES.txt
normalizer/normalizer-stats/statsnormalizer.egg-info/dependency_links.txt
normalizer/normalizer-stats/statsnormalizer.egg-info/requires.txt
normalizer/normalizer-stats/statsnormalizer.egg-info/top_level.txt
\ No newline at end of file
nomadcore
# Copyright 2017-2018 Fawzi Mohamed
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
......@@ -21,14 +21,14 @@ from builtins import str
from builtins import range
from past.utils import old_div
import sys, re, json, glob, os
import setup_path
import statsnormalizer.setup_paths
import fractions
from nomadcore.parse_streamed_dicts import readDict
from nomadcore.compact_sha import sha512
from nomadcore.json_support import addShasOfJson, jsonIndentS, jsonCompactS, jsonIndentF
from nomadcore.parser_backend import JsonParseEventsWriterBackend
from ase.data import chemical_symbols
from classify_structure import ClassifyStructure
from statsnormalizer.classify_structure import ClassifyStructure
from io import open
import numpy, numpy.linalg
import spglib
......
Metadata-Version: 1.0
Name: statsnormalizer
Version: 0.1
Summary: NOMAD Stats Normalizer.
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN
README.md
normalizer/normalizer-stats/statsnormalizer.egg-info/PKG-INFO
normalizer/normalizer-stats/statsnormalizer.egg-info/SOURCES.txt
normalizer/normalizer-stats/statsnormalizer.egg-info/dependency_links.txt
normalizer/normalizer-stats/statsnormalizer.egg-info/requires.txt
normalizer/normalizer-stats/statsnormalizer.egg-info/top_level.txt
\ No newline at end of file
nomadcore
numpy
spglib
ase
\ No newline at end of file
setup.py 0 → 100644
# Copyright 2018 Markus Scheidgen
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from setuptools import setup, find_packages
def main():
setup(
name="statsnormalizer",
version="0.1",
description="NOMAD Stats Normalizer.",
license="",
package_dir={'': 'normalizer/normalizer-stats'},
packages=find_packages(),
install_requires=[
'nomadcore'
],
)
if __name__ == "__main__":
main()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment