-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
94 lines (89 loc) · 2.14 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pymead"
authors = [
{name = "Matthew G Lauer", email = "[email protected]"}
]
description = "Python GUI and API for generation, aerodynamic analysis, and shape optimization of parametric airfoil systems"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"aerodynamic",
"aerodynamics",
"aero-propulsive",
"aero-propulsion",
"aeropropulsive",
"aeropropulsion",
"airfoil",
"shape optimization",
"MDAO",
"MDO",
"airfoil matching",
"analysis",
"parametric",
"airfoil system",
"XFOIL",
"MSES"
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"scipy",
"numpy",
"shapely>=2.0",
"matplotlib",
"requests>=2.31",
"PyQt6",
"PyQt6-WebEngine",
"PyQt6-Frameless-Window",
"pyqtgraph",
"python-benedict",
"pandas",
"pymoo==0.5.0",
"numba",
"networkx",
"psutil",
"pytest>=7",
"pytest-qt",
"pynput",
"triangle"
]
dynamic = ["version"]
[project.urls]
Releases = "https://github.com/mlau154/pymead/releases"
Documentation = "https://pymead.readthedocs.io/"
Repository = "https://github.com/mlau154/pymead"
Issues = "https://github.com/mlau154/pymead/issues"
[project.scripts]
pymead-gui = "pymead.gui.gui:main"
[tool.setuptools]
packages = [
"pymead",
"pymead.core",
"pymead.examples",
"pymead.utils",
"pymead.gui",
"pymead.tests",
"pymead.resources",
"pymead.resources.cmcrameri",
"pymead.analysis",
"pymead.data",
"pymead.icons",
"pymead.optimization",
"pymead.plugins",
"pymead.plugins.IGES",
"pymead.post",
"pymead.gui.scientificspinbox_master",
"pymead.gui.pyqt_vertical_tab_widget.pyqt_vertical_tab_widget"
]
[tool.setuptools.dynamic]
version = {attr = "pymead.version.__version__"}