-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
145 lines (132 loc) 路 3.5 KB
/
Copy pathpyproject.toml
File metadata and controls
145 lines (132 loc) 路 3.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ensim"
version = "3.0.1"
description = "Rocket propulsion analysis and six-degree-of-freedom flight simulation"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{name = "Mehmet G眉m眉艧"}]
maintainers = [{name = "Mehmet G眉m眉艧"}]
keywords = [
"rocket",
"propulsion",
"simulation",
"aerospace",
"thermodynamics",
"NASA CEA",
"chemical equilibrium",
"flight dynamics",
"6-DOF",
"Monte Carlo",
"nozzle design",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24.0,<2.0.0",
"scipy>=1.10.0",
"numba>=0.57.0,<0.63.0; platform_system == 'Darwin' and platform_machine == 'x86_64'",
"numba>=0.57.0; platform_system != 'Darwin' or platform_machine != 'x86_64'",
"PyQt6>=6.5.0",
"pyvista>=0.40.0",
"pyvistaqt>=0.11.0",
"matplotlib>=3.7.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-timeout>=2.1.0",
"ruff>=0.1.0",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.4.0",
]
all = ["ensim[dev,docs]"]
[project.urls]
Homepage = "https://github.com/SpaceEngineerSS/EnSim"
Documentation = "https://spaceengineerss.github.io/EnSim/"
Repository = "https://github.com/SpaceEngineerSS/EnSim"
Issues = "https://github.com/SpaceEngineerSS/EnSim/issues"
Changelog = "https://github.com/SpaceEngineerSS/EnSim/blob/main/CHANGELOG.md"
[project.scripts]
ensim = "ensim.cli:main"
[project.gui-scripts]
ensim-gui = "ensim.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["ensim*"]
[tool.setuptools.package-data]
ensim = [
"data/*.dat",
"assets/*.qss",
"assets/*.png",
"assets/*.ico",
"assets/*.svg",
"assets/styles/*.qss",
]
[tool.ruff]
line-length = 100
target-version = "py310"
exclude = [
".git",
".mypy_cache",
".pytest_cache",
".ruff_cache",
".tox",
".venv",
"build",
"dist",
"site",
]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "ARG", "SIM"]
ignore = ["E501", "B008", "C901", "ARG001"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["ARG"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = ["-ra", "-q", "--strict-markers", "--strict-config"]
testpaths = ["tests"]
pythonpath = ["src"]
markers = [
"slow: marks tests as slow",
"integration: marks integration tests",
"validation: marks tests against external references",
"gui: marks tests that require Qt",
]
filterwarnings = [
"ignore:module 'sre_constants' is deprecated:DeprecationWarning:pyparsing",
]
[tool.coverage.run]
source = ["ensim"]
branch = true
omit = ["*/tests/*", "*/__init__.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@(abc\\.)?abstractmethod",
]
show_missing = true