-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
62 lines (55 loc) · 1.52 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
[project]
name = "salem"
description = "Geoscientific data I/O and map projections"
authors = [{name = "Fabien Maussion", email = "[email protected]"}]
license = {text = "BSD 3-clause"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"pyproj",
"joblib",
"netCDF4",
"pandas",
"xarray",
]
dynamic = ["version"]
[tool.setuptools_scm]
fallback_version = "0.3.11"
version_file = "salem/_version.py"
[project.urls]
Homepage = "https://salem.readthedocs.io"
Documentation = "https://salem.readthedocs.io"
Source = "https://github.com/fmaussion/salem"
Tracker = "https://github.com/fmaussion/salem/issues"
[project.readme]
file = "README.rst"
content-type = "text/x-rst; charset=UTF-8"
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm>=8",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
platforms = ["any"]
include-package-data = true
license-files = ["LICENSE.rst"]
[tool.setuptools.packages.find]
exclude = ["docs"]
namespaces = false
[tool.distutils.bdist_wheel]
universal = 1