-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (72 loc) · 1.94 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
[project]
name = "optim_esm_tools"
version = "3.0.1"
dependencies = [
"immutabledict",
"intake-esm",
"matplotlib",
"numba",
"numpy",
"pandas",
"tqdm",
"treelib",
"xarray",
"statsmodels",
"fiona<=1.9.6",
"geopandas<=0.13.2",
"rasterio<=1.4.3",
]
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "Joran R. Angevaare" }]
maintainers = [{ name = "Joran R. Angevaare" }]
description = "Tools for OptimESM"
classifiers = [
'Intended Audience :: Science/Research',
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: Implementation :: CPython',
]
# [project.scripts]
# oet_plot = "optim_esm_tools.bin.oet_plot:main"
[project.optional-dependencies]
test = [
"coverage",
"coveralls",
"ipython",
"matplotlib",
"nbmake",
"pytest",
"tqdm",
]
[tool.setuptools]
script-files = ['bin/oet_plot']
[tool.setuptools.package-data]
optim_esm_tools = ['data/*', 'optim_esm_tools/*', '*.ini*', 'py.typed']
[tool.setuptools.packages.find]
where = [".", "optim_esm_tools"]
[project.urls]
homepage = 'https://github.com/JoranAngevaare/optim_esm_tools'
documentation = 'https://github.com/JoranAngevaare/optim_esm_tools/blob/master/examples/Example.ipynb'
repository = 'https://github.com/JoranAngevaare/optim_esm_tools'
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.black]
target-version = ['py38']
skip-string-normalization = true
[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.:",
"pragma: no cover",
"ignore_errors = True",
]
[tool.flake8]
# Set maximum width of the line to 100
max-line-length = 110