-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
93 lines (84 loc) · 2.68 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
[tool.poetry]
name = "FASTUAV"
version = "0.1.1"
description = "FAST-UAV is a framework for performing rapid Overall Aircraft Design for Unmanned Aerial Vehicles"
readme = "README.md"
authors = [
"Félix POLLET <[email protected]>",
"Scott DELBECQ <[email protected]>",
"Marc BUDINGER <[email protected]>"
]
packages = [
{ include = "fastuav", from = "src" },
]
homepage = "https://github.com/SizingLab/FAST-UAV"
keywords = [
"uav",
"design",
"multi-disciplinary"
]
license = "GPL-3.0-only"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Physics"
]
[tool.poetry.dependencies]
# IMPORTANT: when modifying this list, docs/requirements.txt must be updated for
# ReadTheDocs to be able to compile the documentation.
# A pre-commit hook has been added to do this task. As a result, any modification
# of poetry.lock file will modify docs/requirements.txt and make
# the commit fail because "files were modified by this hook". In that case,
# doing again the commit including changes in docs/requirements.txt will succeed.
python = "^3.8, <3.10"
fast-oad-core = "^1.4.1"
stdatm = "0.2.0"
matplotlib = "^3.6.2"
cma = "^3.1.0"
scikit-learn = "^1.0.2"
psutil = "*"
kaleido = "0.2.1"
SALib = "1.4.5"
numpy = "1.23.1"
# For future LCA deployment
#brightway2 = "^2.3"
#bw2io = "0.8.8" # compatibility with ecoinvent 3.9 only !!! For ecoinvent 3.8, switch to 0.8.7
#lca-algebraic = "1.0.5"
#networkx = "*"
#pyvis = "*"
[tool.poetry.extras]
jupyterlab = ["jupyterlab"]
[tool.poetry.plugins."fastoad.plugins"]
"uav" = "fastuav"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-cov = "^3.0"
coverage = { extras = ["toml"], version = "^5.5" }
pre-commit = "^2.14.1"
black = { version = "22.3.0", extras = ["jupyter"], allow-prereleases = true }
pylint = "^2.10.2"
nbval = "^0.9.6"
sphinx = "^4.1.2"
sphinx-rtd-theme = "^1.0"
sphinxcontrib-bibtex = "^2.3.0"
flake8 = "^4.0.1"
nbstripout = "^0.5.0"
[tool.black]
line-length = 100
# For installing with 'poetry install' command.
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
# For installing with 'pip install -e .' command.
#[build-system]
#requires = ["setuptools", "setuptools-scm"]
#build-backend = "setuptools.build_meta"