Skip to content

Commit 4a97e3f

Browse files
authored
Merge pull request #27 from michaeltryby/dev
Pulling changes from downstream
2 parents 97b460e + 9d093a0 commit 4a97e3f

6 files changed

Lines changed: 674 additions & 462 deletions

File tree

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,23 @@ docs/_build/
5555

5656
# PyBuilder
5757
target/
58+
59+
# Eclipse
60+
.settings/
61+
.project
62+
.pydevproject
63+
64+
# Testing
65+
.pytest_cache/
66+
toolkit/tests/data/test.*
67+
68+
# Wrapped libraries
69+
*.h
70+
*.dll
71+
*.lib
72+
73+
# SWIG wrappers
74+
output.py
75+
output_wrap.c
76+
toolkit.py
77+
toolkit_wrap.c

output/tests/data/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
3+
# __init__.py
4+
#
5+
# Created: 11/13/2017
6+
# Author: Michael E. Tryby
7+
# US EPA - ORD/NRMRL
8+
#
9+
10+
import os
11+
12+
DATA_PATH = os.path.abspath(os.path.dirname(__file__))
13+
14+
OUTPUT_FILE_EXAMPLE1 = os.path.join(DATA_PATH, 'net1.out')

output/tests/data/net1.out

16.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)