Skip to content

Commit 857e58c

Browse files
committed
Commit initial skeleton rooted in June 2018 app template
0 parents  commit 857e58c

34 files changed

+2123
-0
lines changed

.gitignore

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
## *** Standard ignores courtesy of Logan Martel ***
2+
3+
*.swp
4+
*.pyc
5+
*.DS_Store
6+
*.png
7+
*.pkl
8+
*.csv
9+
*.txt
10+
!requirements.txt
11+
._*
12+
config/*
13+
!config/README.md
14+
config/env1/*
15+
!config/env1/
16+
!config/env1/env1.config.example
17+
!config/env1/README.md
18+
config/env2/*
19+
!config/env2/
20+
!config/env2/env2.config.example
21+
!config/env2/README.md
22+
data/*
23+
!data/README.md
24+
data/data1/*
25+
!data/data1/
26+
!data/data1/README.md
27+
data/data2/*
28+
!data/data2/
29+
!data/data2/README.md
30+
output_dest/*
31+
!output_dest/README.md
32+
output_dest/env1/*
33+
!output_dest/env1/README.md
34+
output_dest/env2/*
35+
!output_dest/env2/README.md
36+
.dir_bash_history
37+
.idea/*
38+
39+
## *** Ignores courtesy of (https://github.com/kennethreitz/samplemod/blob/master/.gitignore) ***
40+
41+
# Byte-compiled / optimized / DLL files
42+
__pycache__/
43+
*.py[cod]
44+
*$py.class
45+
46+
# C extensions
47+
*.so
48+
49+
# Distribution / packaging
50+
.Python
51+
env/
52+
build/
53+
develop-eggs/
54+
dist/
55+
downloads/
56+
eggs/
57+
.eggs/
58+
lib/
59+
lib64/
60+
parts/
61+
sdist/
62+
var/
63+
*.egg-info/
64+
.installed.cfg
65+
*.egg
66+
67+
# PyInstaller
68+
# Usually these files are written by a python script from a template
69+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
70+
*.manifest
71+
*.spec
72+
73+
# Installer logs
74+
pip-log.txt
75+
pip-delete-this-directory.txt
76+
77+
# Unit test / coverage reports
78+
htmlcov/
79+
.tox/
80+
.coverage
81+
.coverage.*
82+
.cache
83+
nosetests.xml
84+
coverage.xml
85+
*,cover
86+
.hypothesis/
87+
88+
# Translations
89+
*.mo
90+
*.pot
91+
92+
# Django stuff:
93+
*.log
94+
local_settings.py
95+
96+
# Flask stuff:
97+
instance/
98+
.webassets-cache
99+
100+
# Scrapy stuff:
101+
.scrapy
102+
103+
# Sphinx documentation
104+
docs/_build/
105+
106+
# PyBuilder
107+
target/
108+
109+
# IPython Notebook
110+
.ipynb_checkpoints
111+
112+
# pyenv
113+
.python-version
114+
115+
# celery beat schedule file
116+
celerybeat-schedule
117+
118+
# dotenv
119+
.env
120+
121+
# virtualenv
122+
.venv/
123+
venv/
124+
ENV/
125+
126+
# Spyder project settings
127+
.spyderproject
128+
129+
# Rope project settings
130+
.ropeproject

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
# command to install dependencies
5+
install:
6+
- pip install -r requirements.txt
7+
# command to run tests
8+
script:
9+
- pytest

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This project, my-python-boilerplate, was originally developed by:
2+
3+
Logan Martel - github username: martelogan

0 commit comments

Comments
 (0)