forked from santoshphilip/eppy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged Gitignore and Commit Template files from 'eayoungs' branch
- Loading branch information
Eric Youngson
committed
May 2, 2015
1 parent
95d887e
commit f89dfb3
Showing
2 changed files
with
67 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
Branch: i30_pythongeometry | Intent: Create module of native Python functions to | ||
replace numpy functions used in eppy geometry modules | ||
Commit Intent: Create a new file to contain module and initialize efforts | ||
Branch: BRANCHNAME | Intent: | ||
Commit Intent: | ||
--------------------------------------------------------------------------------------- | ||
*/eppy/geometry/pyNumeric.py | ||
- | ||
*FILENAME* | ||
-DESCRIPTION OF ATOMIC CHANGE TO ABOVE NAMED FILE... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,67 @@ | ||
*~ | ||
*.pyc | ||
.DS_Store | ||
.idea | ||
.commitLog | ||
.ipynb_checkpoints/ | ||
__pycache__ | ||
|
||
*.sublime-* | ||
*.sublime* | ||
*test* | ||
venv/ | ||
.commitLog | ||
eppy/tests/test_report_tables/ | ||
*.ipynb | ||
.idea/ | ||
*out* | ||
|
||
#===============================https://github.com/github/gitignore.git============================ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
eppy.egg-info/ | ||
eppy/useful_scripts/InputSim/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ |