From ab853f802d49891cd8596ced70d9dac0fd791864 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Thu, 29 Apr 2021 21:30:25 +0100 Subject: [PATCH 1/4] removed links to shimwell repo --- setup.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 998d7b1..f31eebd 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,12 @@ setuptools.setup( name="remove_dagmc_tags", - version="0.0.2", - author="Jonathan Shimwell", - author_email="mail@jshimwell.com", + version="0.0.3", + author="Svalinn development team", description="A tool for selectively removing tags such as the graveyard from DAGMC h5m files.", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/shimwell/remove_dagmc_tags", + url="https://github.com/svalinn/remove_dagmc_tags", packages=setuptools.find_packages(), zip_safe=True, package_dir={"remove_dagmc_tags": "remove_dagmc_tags"}, @@ -23,8 +22,9 @@ "LICENSE", ] }, + install_requires=[ + "numpy" + ], + # pymoab is also required for this package but is not available via pip install tests_require=["pytest-cov"], - # install_requires=[ - # # 'pymoab' is is required for this package but is not available via pip install at the moment - # ], ) From aea772e7994b84f8c3bd3e65f0ba188725f3d945 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Thu, 29 Apr 2021 21:30:38 +0100 Subject: [PATCH 2/4] sorted imports --- remove_dagmc_tags/remove-dagmc-tags | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/remove_dagmc_tags/remove-dagmc-tags b/remove_dagmc_tags/remove-dagmc-tags index 92cf63d..7c8c90f 100644 --- a/remove_dagmc_tags/remove-dagmc-tags +++ b/remove_dagmc_tags/remove-dagmc-tags @@ -1,8 +1,9 @@ #!/usr/bin/python -from remove_dagmc_tags import remove_tags -from pathlib import Path import argparse +from pathlib import Path + +from remove_dagmc_tags import remove_tags if __name__ == '__main__': From 3e570f97e4beecd1cfa879a8215ebdcdce382d01 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Thu, 29 Apr 2021 21:31:03 +0100 Subject: [PATCH 3/4] added __init__.py to include tests in package distribution --- tests/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/__init__.py diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 From b530cee81d595eb8899884caf9e2cb6d1f0b9065 Mon Sep 17 00:00:00 2001 From: autopep8 Date: Thu, 29 Apr 2021 20:34:45 +0000 Subject: [PATCH 4/4] Automated autopep8 fixes --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f31eebd..5902b1f 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,8 @@ }, install_requires=[ "numpy" - ], - # pymoab is also required for this package but is not available via pip install + ], + # pymoab is also required for this package but is not available via pip + # install tests_require=["pytest-cov"], )