-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (53 loc) · 1.11 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
[tool.poetry]
name = "mx-robot-library"
version = "0.2.2"
description = "MX Robot Library"
license = "GPL-3.0-or-later"
authors = ["MX3 Team"]
maintainers = ["Jacob Oldfield <oldfielj@ansto.gov.au>"]
[[tool.poetry.source]]
name = "cachedpypi"
url = "https://pypi.asci.synchrotron.org.au/root/pypi/+simple"
priority = "primary"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pydantic = ">=2.8.2,<2.9.0"
pydantic-settings = ">=2.4.0"
typing-extensions = ">=4.6.1"
cachetools = ">=5.3.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "3.7.1"
[tool.black]
line-length = 88
target_version = ["py39"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pyright]
ignore = ["**/typing_extensions.py"]
pythonVersion = "3.9"
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
extend-select = ["B"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"