From 8c6be976e0dcbcb802384ad39925f9276aec0863 Mon Sep 17 00:00:00 2001 From: socolofs Date: Thu, 30 Apr 2020 18:08:12 -0500 Subject: [PATCH] Polishing test subpackage Minor updates to remove unwanted files --- .cache/v/cache/lastfailed | 9 --------- .gitignore | 1 + MANIFEST.in | 1 - setup.py | 9 ++++----- 4 files changed, 5 insertions(+), 15 deletions(-) delete mode 100644 .cache/v/cache/lastfailed diff --git a/.cache/v/cache/lastfailed b/.cache/v/cache/lastfailed deleted file mode 100644 index d11f3c7a..00000000 --- a/.cache/v/cache/lastfailed +++ /dev/null @@ -1,9 +0,0 @@ -{ - "::test_cubic_solver": true, - "::test_ellipsoid": true, - "::test_equilibrium": true, - "::test_rigid": true, - "::test_sintef_module": true, - "::test_sphere": true, - "::test_spherical_cap": true -} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 5a156f4d..d50c0f96 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ nosetests.xml .pydevproject # My Files +.cache .DS_Store MANIFEST Sphinx diff --git a/MANIFEST.in b/MANIFEST.in index e4e8a995..fde6ac23 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,3 @@ include *.txt -include test/output/*.txt recursive-include docs *.* recursive-include notebooks *.* \ No newline at end of file diff --git a/setup.py b/setup.py index d7da9160..9534328c 100755 --- a/setup.py +++ b/setup.py @@ -30,8 +30,8 @@ from numpy.distutils.core import Extension # Describe some attributes of the software -classifiers = """\ -Development Status :: beta +classifiers = \ +"""Development Status :: beta Environment :: Console Intended Audience :: Science/Research Intended Audience :: Developers @@ -39,8 +39,7 @@ Operating System :: OS Independent Programming Language :: Python Topic :: Scientific/Engineering -Topic :: Software Development :: Libraries :: Python Modules -""" +Topic :: Software Development :: Libraries :: Python Modules""" # Define the sample programs to include bin_files = ['./bin/dbm/air_eos.py', @@ -111,5 +110,5 @@ def get_version(pkg_name): platforms=['any'], ext_package='tamoc', ext_modules=[ext_dbm_f], - classifiers=filter(None, classifiers.split("\n")), + classifiers=classifiers.split("\n"), )