forked from fairtracks/omnipy_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.38 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "omnipy-examples"
version = "0.3.3"
description = ""
authors = ["Sveinung Gundersen <[email protected]>", "Jeanne Cheneby <[email protected]>"]
readme = "README.md"
packages = [{include = "omnipy_examples", from = "src"}]
include = [
{ path = "input" }
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
typing-inspect = "^0.8.0"
omnipy = "^0.10.3"
typer = {extras = ["all"], version = "^0.7.0"}
omnipy-example-data = "^0.1.0"
reader = "^3.4"
github3-py = "^3.2.0"
s3fs = "^2023.1.0"
[tool.poetry.group.dev.dependencies]
yapf = "^0.32.0"
flake8 = "^6.0.0"
isort = "^5.10.1"
flake8-quotes = "^3.3.1"
mypy = "^1.0.0"
[tool.poetry.scripts]
omnipy-examples = "omnipy_examples.main:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.yapf]
based_on_style = "google"
align_closing_bracket_with_visual_indent = true
blank_line_before_nested_class_or_def = false
column_limit = 100
indent_dictionary_value = true
join_multiple_lines = true
split_all_comma_separated_values = false
split_all_top_level_comma_separated_values = true
split_before_expression_after_opening_paren = true
split_before_arithmetic_operator = true
[tool.isort]
profile = "google"
force_single_line = false
multi_line_output = 1
src_paths = ["src/examples", "tests"]
line_length = 100
[tool.mypy]
python_version = "3.10"
mypy_path = "src:tests"
warn_no_return = false