-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.43 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
[project]
name = "rocket"
version = "0.3.0"
description = "Rocket - Tools for rocket vehicle design and analysis"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Cameron Flannery" }
]
keywords = ["rocket", "propulsion", "aerospace", "engineering", "nozzle", "tanks", "vehicle"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=2.0",
"beartype>=0.18",
"numba>=0.60",
"matplotlib>=3.9",
"rocketcea>=1.2.1",
"polars>=1.35.0",
"tqdm>=4.66",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"ruff>=0.4",
]
[project.urls]
Homepage = "https://github.com/cmflannery/rocket"
Repository = "https://github.com/cmflannery/rocket"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["rocket"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501"]