forked from jgressier/flowdyn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.24 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
[tool.poetry]
name = "flowdyn"
version = "1.3.1"
description = "Model of discretization of hyperbolic model, base is Finite Volume method"
authors = ["j.gressier <[email protected]>"]
license = "MIT"
repository = "https://github.com/jgressier/flowdyn"
readme = "README.md"
documentation = "https://flowdyn.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules" ]
exclude = [ "examples", "lessons" ]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.15"
matplotlib = { version="^3.1", optional = true }
aerokit = { version="^1.0", optional = true }
pytest = "^6.0"
[tool.poetry.dev-dependencies]
matplotlib = "^3.1"
aerokit = "^1.0.1"
pytest-cov = "^2.11.1"
mkdocs = "^1.1"
mkdocs-material = "^6.2.5"
mkdocs-jupyter = "^0.15"
mkdocs-include-markdown-plugin = ""
mkdocs-exclude = ""
mkdocstrings = ""
[tools.flake8]
[tools.black]
skip-string-normalization = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov -v"
testpaths = [
"tests"
]