-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (62 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
73 lines (62 loc) · 1.92 KB
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
[build-system]
requires = ["setuptools>=44"]
build-backend = "setuptools.build_meta"
[project]
name = "mathphys"
authors = [{ name = "lnls-fac" } ]
maintainers = [
{name = "Ana Oliveira", email = "ana.clara@lnls.br"},
{name = "Ximenes Resende", email = "xresende@gmail.com"},
{name = "Fernando H. de Sá", email = "fernandohds564@gmail.com"},
{name = "Murilo Barbosa Alves", email= "alvesb.murilo@gmail.com"}
]
description = "LNLS Math and Physics Utilities"
readme = "README.md"
dynamic = ["version", "dependencies"]
requires-python = ">=3.4"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
license = "MIT"
license-files= [ "LICENSE", ]
[project.urls]
Homepage = "https://github.com/lnls-fac/mathphys"
Download = "https://github.com/lnls-fac/mathphys"
Repository = "https://github.com/lnls-fac/mathphys.git"
Issues = "https://github.com/lnls-fac/mathphys/issues"
# --- Configurações específicas do Setuptools ---
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = { file = "VERSION" }
dependencies = { file = "requirements.txt" }
[tool.setuptools.package-data]
mathphys = ["VERSION"]
# --- linter and formatter configurations ---
[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