-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.28 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
[build-system]
requires = ["setuptools>=61.0", "wheel",
#"Cython"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyLARDA"
dynamic = ["version"]
authors = [
{ name="pyLARDA-dev-team" },
]
description='Data cube for handling atmospheric observations of profiling remote sensing instruments.'
requires-python = ">=3.8"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
readme = 'README.md'
dependencies = [
"numpy<=2.0", # ImportError: Numba needs NumPy 2.0 or less. Got NumPy 2.1.
"scipy",
"netCDF4",
"msgpack",
"xarray",
"matplotlib",
"requests",
"toml",
"tqdm",
"numba",
]
#[tool.setuptools]
#ext-modules = [
# {name = "pyLARDA.peakTree_fastbuilder", sources = ["pyLARDA/peakTree_fastbuilder.pyx"]}
#]
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "pyLARDA._meta.__version__"} # any module attribute compatible with ast.literal_eval
#readme = {file = ["README.md"]}
[project.urls]
Homepage = "https://github.com/lacros-tropos/larda'"
#Issues = "https://github.com/pypa/sampleproject/issues"