-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.47 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
[project]
name = "Infinity-API"
version = "2.3.0"
description = "RESTFULL open API for rocketpy"
requires-python = ">=3.12"
authors = [
{name = "Gabriel Barberini", email = "[email protected]"}
]
maintainers = [
{name = "Aasit", email = "[email protected]"},
{name = "Luiz Mota", email = "[email protected]"}
]
readme = "README.md"
keywords = ["rocketpy", "API", "simulation", "rocket", "flight"]
classifiers = [
"Development Status :: Production",
"Programming Language :: Python"
]
[project.urls]
Homepage = "http://api.rocketpy.org/"
Documentation = "http://api.rocketpy.org/docs"
Repository = "https://github.com/RocketPy-Team/infinity-api"
"Bug Tracker" = "https://github.com/RocketPy-Team/Infinity-API/issues"
[tool.black]
line-length = 79
include = '\.py$'
skip-string-normalization = true
[tool.pylint]
max-line-length = 79
disable = """
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
too-few-public-methods,
too-many-public-methods,
line-too-long,
duplicate-code,
logging-fstring-interpolation,
attribute-defined-outside-init,
broad-exception-caught,
raise-missing-from,
too-many-instance-attributes,
import-error,
too-many-arguments,
redefined-outer-name,
too-many-positional-arguments,
"""
[tool.ruff]
line-length = 79
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "N", "Q"]
ignore = ["N815", "E501", "Q000", "E402"]
fixable = [
"F401",
]