-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 767 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tool.poetry]
name = "bpho-projectiles"
version = "0.1.0"
description = "Submission to the BPhO Computational Challenge"
authors = ["Kenneth Lew", "Timothy Ka"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
streamlit = "^1.37.0"
numpy = "^1.26.4"
plotly = "^5.22.0"
[tool.poetry.group.dev.dependencies]
watchdog = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.8"]
build-backend = "poetry.core.masonry.api"
[tool.yapf]
based_on_style = "yapf"
column_limit = 80
indent_width = 4
continuation_indent_width = 4
spaces_before_comment = "15, 20"
coalesce_brackets = true
dedent_closing_brackets = true
split_before_first_argument = true
blank_lines_around_top_level_definition = 2
blank_line_before_nested_class_or_def = 0