forked from AeroMAPS/AeroMAPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (59 loc) · 1.5 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
[tool.black]
line-length = 100
[tool.poetry]
name = "aeromaps"
version = "0.1.0-beta"
description = "AeroMAPS: Multidisciplinary Assessment of Prospective Scenarios for air transport"
readme = "README.md"
authors = [
"Thomas PLANES <[email protected]>",
"Scott DELBECQ <[email protected]>",
"Antoine SALGAS <[email protected]>",
]
keywords = [
"air transport",
"climate change",
"prospective scenarios",
"energy issues",
]
license = "GPL-3.0-only"
homepage = "https://github.com/AeroMAPS/AeroMAPS"
[tool.poetry.dependencies]
python = "^3.8.0, <3.11"
numpy = "^1.20.3"
scipy = "^1.4.1"
pandas = "^1.1.0"
xlrd = "1.2.0"
openpyxl = "^3.1.2"
voila = "^0.5.0"
jupyterlab = "^3.3.0"
matplotlib = "^3.7"
ipywidgets = "^8.0.6"
ipysheet = ">=0.5.0, <1"
plotly = "^5.0.0"
markdown = "^3.4.3"
ipympl = "^0.9.3"
gemseo = "^5.0"
aenum = "^3.1.12"
ipydatagrid = "^1.1.14"
ipytree = "^0.2.2"
docstring-inheritance = "^1.0.0"
dacite = "^1.8.0"
fair = "2.1.4"
[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"
[tool.poetry.scripts]
aeromaps = "aeromaps.app:main"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"