Skip to content

Commit 0aa84f2

Browse files
committed
Add initial version
0 parents  commit 0aa84f2

10 files changed

+913
-0
lines changed

.editorconfig

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# https://editorconfig.org/
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
end_of_line = lf
11+
charset = utf-8
12+
13+
[*.py]
14+
max_line_length = 88
15+
ensure_newline_before_comments = true
16+
include_trailing_comma = true
17+
use_parentheses = true
18+
19+
# Use 2 spaces for the HTML files
20+
[*.html]
21+
indent_size = 2
22+
23+
# The JSON files contain newlines inconsistently
24+
[*.json]
25+
indent_size = 2
26+
insert_final_newline = false
27+
28+
# Minified JavaScript files shouldn't be changed
29+
[**.min.js]
30+
indent_style = unset
31+
insert_final_newline = false
32+
33+
# Makefiles always use tabs for indentation
34+
[Makefile]
35+
indent_style = tab
36+
37+
# Batch files use tabs for indentation
38+
[*.bat]
39+
indent_style = tab
40+
41+
[docs/**.txt]
42+
max_line_length = 88
43+
44+
[*.yml]
45+
indent_size = 2

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
py-pipeline/_version.py export-subst

.gitignore

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
.hypothesis/
48+
.pytest_cache/
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
64+
65+
# Sphinx documentation
66+
docs/_build/
67+
68+
# PyBuilder
69+
target/
70+
71+
# Jupyter Notebook
72+
.ipynb_checkpoints
73+
74+
# pyenv
75+
.python-version
76+
77+
# celery beat schedule file
78+
celerybeat-schedule
79+
80+
# dotenv
81+
.env
82+
83+
# virtualenv
84+
.venv/
85+
venv/
86+
ENV/
87+
88+
# Spyder project settings
89+
.spyderproject
90+
91+
# Rope project settings
92+
.ropeproject
93+
94+
# ctags
95+
tags
96+
.vscode
97+
98+
# vim swap files
99+
*.swp
100+
101+
# annotying mac files!
102+
.DS_Store
103+
104+
# don't like pipfiles
105+
Pipfile
106+
Pipfile.lock
107+
108+
# Temporary testing file
109+
notebooks/debug*.py

.pylintrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[MASTER]
2+
ignore = ["CVS"]
3+
load-plugins=pylint.extensions.docparams
4+
[FORMAT]
5+
good-names=x,y,X,inter_X,inter_y,post_X,post_y
6+
[DESIGN]
7+
exclude-too-few-public-methods = [".+"]
8+
[MESSAGES CONTROL]
9+
disable=R0911,R0913,R0903

0 commit comments

Comments
 (0)