-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
80 lines (68 loc) · 1.92 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.in"]}
[tool.setuptools]
packages = { find = { where = ["."], include = ["rocketserializer*"] } }
[project]
name = "rocketserializer"
version = "0.2.0"
dynamic = ["dependencies"]
requires-python = ">= 3.8"
description = "Easily convert your OpenRocket files into RocketPy simulations."
readme = "README.md"
license = {file = "LICENSE.md"}
authors = [
{name = "Guilherme Fernandes", email = "[email protected]"},
{name = "Patrick Sampaio", email = "[email protected]"},
{name = "Julio Machado", email = "[email protected]"},
]
maintainers = [
{name = "RocketPy Team", email = "[email protected]"},
]
keywords = [
"python",
"simulation",
"aerospace",
"motor",
"flight-simulator",
"trajectory",
"trajectory-simulator",
"rocket-simulator",
"openrocket",
"rocket-simulation",
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
ork2json = "rocketserializer.cli:ork2json"
ork2notebook = "rocketserializer.cli:ork2notebook"
[project.urls]
Documentation = "https://docs.rocketpy.org/en/latest/"
Repository = "https://github.com/RocketPy-Team/RocketSerializer"
Issues = "https://github.com/RocketPy-Team/RocketSerializer/issues"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.pylint]
max-line-length = 88
disable = """
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
attribute-defined-outside-init,
too-many-locals,
too-many-arguments,
too-many-statements,
raise-missing-from,
fixme,
no-else-break,
no-else-return,
"""