-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
116 lines (105 loc) · 2.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "decide-exchange-model"
version = "2025.1.1-dev"
description = "Decide exchange model"
readme = "README.md"
authors = [ { "name" = "Jelmer Draaijer", "email" = "[email protected]" } ]
requires-python = ">=3.9,<3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"blinker==1.5",
"matplotlib==3.6",
"numpy==1.23.4",
"pandas==1.5",
"peewee==3.14.4",
"pyqt5==5.15.11",
"pyqt5-qt5==5.15.2",
"requests",
"typesystem==0.2.5",
]
packages = [ { include = "decide" } ]
[dependency-groups]
#[tool.poetry.scripts]
#decide-cli = 'decide.cli:main'
#decide-gui = 'decide.gui:main'
dev = [
"pre-commit-uv>=4.1.4",
"pytest>=8.3.5",
"pytest-qt>=4.4",
"pytest-xvfb>=3",
"ruff>=0.11.2",
"toml>=0.10.2",
]
[tool.hatch.build.targets.wheel]
packages = [ "decide" ]
[tool.ruff]
# Assume Python 3.9
target-version = "py39"
# Same as Black.
line-length = 120
indent-width = 4
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
# Like Black, indent with spaces, rather than tabs.
format.indent-style = "space"
# Like Black, use double quotes for strings.
format.quote-style = "double"
# Like Black, automatically detect the appropriate line ending.
format.line-ending = "auto"
# Like Black, respect magic trailing commas.
format.skip-magic-trailing-comma = false
# Set the line length limit used when formatting code snippets in
# docstrings.
#
# This only has an effect when the `docstring-code-format` setting is
# enabled.
format.docstring-code-line-length = "dynamic"
# Enable auto-formatting of code examples in docstrings. Markdown,
# reStructuredText code/literal blocks and doctests are all supported.
#
# This is currently disabled by default, but it is planned for this
# to be opt-out in the future.
format.docstring-code-format = false
lint.select = [ "ALL" ]
lint.ignore = [ "D" ]
# Allow fix for all enabled rules (when `--fix`) is provided.
lint.fixable = [ "ALL" ]
lint.unfixable = [ ]
# Allow unused variables when underscore-prefixed.
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
lint.isort.force-single-line = true