-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 1.05 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
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "python-training"
version = "0.0.1"
description = "Open Source Training"
authors = ["Mira Geoscience <support@mirageoscience.com>"]
packages = [
{ include = "scripts"},
]
[tool.poetry.dependencies]
python = "^3.9"
h5py = "^3.2.1" # from geoh5py
matplotlib = "^3.5.1"
numpy = "!=1.19.4, ^1.21.5, <1.23" # scipy 1.7.3 requires numpy <1.23
jupyter-book = "^0.13"
jupytext = "^1.14"
nbconvert = "^6.4"
pytest = "^7.1"
## pip dependencies
geoh5py = { version = "0.5.0", source = "pypi" }
[tool.poetry.dev-dependencies]
pylint = "^2.14.4"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
[tool.conda-lock]
platforms = ['win-64', 'linux-64']
channels = ['conda-forge']
[tool.isort]
# settings for compatibility between ``isort`` and ``black`` formatting
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.black]
# defaults are just fine
[tool.poetry2conda]
name = "python-training"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"