forked from blendernc/blendernc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (73 loc) · 1.93 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
[tool.poetry]
name = "blendernc"
version = "0.6.0"
description = "Blender add-on to import datasets (netCDF, grib, and zarr)"
authors = ["josuemtzmo <josue.martinezmoreno@anu.edu.au>"]
license = "MIT"
keywords = ["visualization", "3D"]
readme = "README.md"
homepage = "https://github.com/blendernc/blendernc"
repository = "https://github.com/blendernc/blendernc"
include = [
"LICENSE",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: GIS",
]
packages = [
{ include = "blendernc", from = "." },
]
[tool.poetry.urls]
"Changelog" = "https://github.com/blendernc/blendernc/blob/master/CHANGELOG.md"
[tool.semantic_release]
version_variable = [
"blendernc/__init__.py:__version__",
"docs/source/conf.py:release"
]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
version_pattern= [
'.github/ISSUE_TEMPLATE.md:BlenderNC Version: {version}',
# 'blendernc/__init__.py: "version": (0\d+\,\d+\,\d+)'
]
major_on_zero = false
branch = "master"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
click = "^7"
toml = "^0.10.2"
numpy = "^1.21.2"
Bottleneck = "1.2.1"
zarr = "^2.9.4"
ecmwflibs = "^0.5.5"
cfgrib = "^0.9.9"
xarray = "^0.19.0"
cmocean = "^2.0"
matplotlib = "^3.4.3"
dask= "^2021.8.1"
scipy = "^1.7.1"
netCDF4 = "^1.5.7"
toolz = "^0.11.1"
psutil = "^5.8.0"
pooch = "^1.5.1"
colorcet = "^3.0.0"
[tool.poetry.dev-dependencies]
python-semantic-release = "^7.16.2"
flake8 = "^3.9.2"
black = "^20.8b1"
isort = "^5.12.0"
pre-commit = "^2.13.0"
commitizen = "^2.18.1"
coverage = "^5.5"
requests = "^2.26.0"