-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.15 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
[project]
name = "amad"
version = "0.1.0"
description = "AKKODIS MDAO Aircraft Demonstrator"
keywords = ["MDAO", "Aircraft Flight Physics Model", "CoSApp"] # Optional
authors = [
#license = "LICENSE.md"
#readme = "README.md"
# repository = "https://github.com/Akkodis/amad"
]
dependencies = [
"ambiance==1.3.1",
"cosapp==0.12.3",
"AeroSandbox==4.1.1",
"sarge==0.1.7.post1",
"psutil==5.9.4",
"pyvista==0.37.0",
"nbformat==5.7.0",
"jupyterlab-pygments==0.1.2",
"ipywidgets==7.6.5",
"jupyterlab-widgets==1.0.2",
"jupyterlab==3.2.4",
"openpyxl==3.1.1",
"plotly==5.13.0"
]
[project.optional-dependencies] # Optional
test = ["pytest==7.4.0"]
doc = ["sphinx", "myst-parser", "sphinx_rtd_theme", "nbsphinx", "nbsphinx-link", "sphinx-autoapi", "readthedocs-sphinx-search"]
style = ["black"]
tests = ["amad[test]"]
dev = ["amad[test]", "amad[doc]", "amad[style]", "pip-tools==7.4.0"]
all = ["amad[dev]"]