Skip to content

Commit

Permalink
Polishing test subpackage
Browse files Browse the repository at this point in the history
Minor updates to remove unwanted files
  • Loading branch information
socolofs committed Apr 30, 2020
1 parent 4c21d26 commit 8c6be97
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
9 changes: 0 additions & 9 deletions .cache/v/cache/lastfailed

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ nosetests.xml
.pydevproject

# My Files
.cache
.DS_Store
MANIFEST
Sphinx
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include *.txt
include test/output/*.txt
recursive-include docs *.*
recursive-include notebooks *.*
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,16 @@
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
License :: MIT
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',
Expand Down Expand Up @@ -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"),
)

0 comments on commit 8c6be97

Please sign in to comment.