-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (62 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
67 lines (62 loc) · 1.66 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rocket-program"
version = "1.0.0"
description = "Modular rocket design: mission ΔV, propulsion, structures, thermal, GNC, V&V, aero surrogates & benchmarks (Python)."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [{ name = "dragonheart8787" }]
keywords = [
"rocket",
"aerospace",
"propulsion",
"trajectory",
"GNC",
"guidance",
"thermal",
"structures",
"MDO",
"V-and-V",
"verification",
"validation",
"uncertainty-quantification",
"Monte-Carlo",
"aerodynamics",
"CEA",
"RocketCEA",
"LEO",
"launch-vehicle",
"systems-engineering",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=1.20",
"matplotlib>=3.3",
"scipy>=1.7",
]
[project.optional-dependencies]
cea = ["rocketcea>=1.2.0"]
cantera = ["cantera>=3.0"]
optuna = ["optuna>=3.0"]
salib = ["SALib>=1.2"]
control = ["control>=0.10"]
all = ["rocketcea>=1.2.0", "cantera>=3.0", "optuna>=3.0", "SALib>=1.2", "control>=0.10"]
[project.urls]
Homepage = "https://github.com/dragonheart8787/rocket_program"
Repository = "https://github.com/dragonheart8787/rocket_program"
Issues = "https://github.com/dragonheart8787/rocket_program/issues"
[tool.setuptools.packages.find]
include = ["rocket_program*"]