From c1c3a11edff43d3a3c027b2920c97e2eb5711f4e Mon Sep 17 00:00:00 2001 From: ntoff Date: Thu, 23 Mar 2017 07:21:07 +1000 Subject: [PATCH] extra things --- .editorconfig | 17 +++++++++++++++++ MANIFEST.in | 2 ++ babel.cfg | 6 ++++++ requirements.txt | 9 +++++++++ 4 files changed, 34 insertions(+) create mode 100644 .editorconfig create mode 100644 MANIFEST.in create mode 100644 babel.cfg create mode 100644 requirements.txt diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..82c8e05 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# This file is for unifying the coding style for different editors and IDEs +# editorconfig.org + +root = true + +[*] +end_of_line = lf +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true + +[**.py] +indent_style = tab + +[**.js] +indent_style = space +indent_size = 4 diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..8cbf8ab --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include README.md +recursive-include octoprint_estop * diff --git a/babel.cfg b/babel.cfg new file mode 100644 index 0000000..b6f5945 --- /dev/null +++ b/babel.cfg @@ -0,0 +1,6 @@ +[python: */**.py] +[jinja2: */**.jinja2] +extensions=jinja2.ext.autoescape, jinja2.ext.with_ + +[javascript: */**.js] +extract_messages = gettext, ngettext diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a1dc463 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +### +# This file is only here to make sure that something like +# +# pip install -e . +# +# works as expected. Requirements can be found in setup.py. +### + +.