-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
74 lines (62 loc) · 1.79 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
# [build-system]
# requires = ["setuptools >= 61.0"]
# build-backend = "setuptools.build_meta"
# [project]
# name = "apsuite"
# version = "2.50.0"
# dependencies = []
# requires-python = ">=3.6"
# authors = [
# {name = "lnls-fac"},
# ]
# maintainers = [
# {name = "Ana Oliveira", email = "[email protected]"},
# {name = "Ximenes Resende", email = "[email protected]"},
# {name = "Fernando H. de Sá", email = "[email protected]"},
# {name = "Murilo Barbosa Alves", email= "[email protected]"}
# ]
# description = "High level Accelerator Physics functions"
# readme = "README.md"
# license='MIT'
# keywords = ["SIRIUS", "python", "EPICS", "Accelerator Physics"]
# classifiers = [
# "Intended Audience :: Science/Research",
# "Programming Language :: Python",
# "Topic :: Scientific/Engineering",
# ]
# [project.urls]
# # Homepage = ""
# # Documentation = ""
# Repository = "https://github.com/lnls-fac/apsuite"
# "Bug Tracker" = "https://github.com/lnls-fac/apsuite/issues"
# # Changelog = ""
# # [project.optional-dependencies]
# # gui = []
# # cli = []
# # [project.scripts]
# # [project.gui-scripts]
[tool.ruff]
select = [
"W", "E", "A", "B", "C90", "D", "I002", "N", "F", "G", "ARG", "S", "NPY"]
ignore = [
"D203", "D204", "D213", "D215", "D400", "D401", "D404", "D406", "D407",
"D408", "D409", "D413", "E203", "E226"]
ignore-init-module-imports = true
preview = true
line-length = 79
fix = true
[tool.ruff.extend-per-file-ignores]
"__init__.py" = ["F401", "F821"]
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.ruff.lint.isort]
split-on-trailing-comma = false
combine-as-imports = true
[tool.isort]
split_on_trailing_comma = false
combine_as_imports = true
combine_star = true
multi_line_output = "HANGING_INDENT"
order_by_type = false
[tool.black]
line-length = 79