Skip to content

Commit

Permalink
chore: added editorconfig * fixed poetry build
Browse files Browse the repository at this point in the history
  • Loading branch information
cbiering committed Dec 6, 2024
1 parent 9b5a7de commit 6f89ce8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

# 4 space indentation
[*.py]
indent_style = space
indent_size = 4

# 2 space indentation
[*.{js,ts,json,yml,yaml,html,cwl}]
indent_style = space
indent_size = 2

[*.{md,rst}]
trim_trailing_whitespace = false
indent_style = space
indent_size = 2
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ authors = [
"Andreas Langenhagen <[email protected]>"
]
readme = "README.md"
packages = [
{ include = "nova" }
]

[tool.poetry.dependencies]
python = "^3.10"
Expand Down Expand Up @@ -124,4 +127,4 @@ insecure = false

[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true
upload_to_vcs_release = true

0 comments on commit 6f89ce8

Please sign in to comment.