-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# SPDX-FileCopyrightText: 2025 GFZ Helmholtz Centre for Geosciences
# SPDX-FileContributor: Bernhard Haas
# SPDX-FileContributor: Sahil Jhawar
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=62.0"]
build-backend = "setuptools.build_meta"
[project]
name = "el_paso"
version = "1.0.3rc0"
description = "EL-PASO is a Python framework designed to streamline the download, processing, and saving of satellite particle observation data."
authors = [{name="Bernhard Haas", email="bhaas@gfz.de"}]
readme = "README.md"
requires-python=">=3.11"
dependencies = [
"astropy>=7.2.0",
"cdflib==1.3.8",
"gitpython==3.1.46",
"matplotlib>=3.10.8",
"netcdf4>=1.7.2",
"numpy>=2.4.2",
"pandas>=3.0.0",
"pytest>=9.0.2",
"python-dateutil>=2.9.0.post0",
"requests>=2.32.5",
"scipy>=1.17",
"sscws==2.4.6",
"swvo@git+https://github.com/GFZ/SWVO.git@main",
"tabulate==0.9.0",
"tqdm>=4.67.2",
"wget>=3.2",
"wheel==0.46.3",
"skyfield==1.54",
"dotenv>=0.9.9",
]
license = "(Apache-2.0 OR CC0-1.0 OR CC-BY-NC-4.0 OR LGPL-3.0-only)"
license-files = ["LICENSES/*"]
classifiers = [
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
[tool.setuptools.packages.find]
include = ["el_paso*"]
[project.urls]
Homepage = "https://github.com/GFZ/EL_PASO"
Tracker = "https://github.com/GFZ/EL_PASO/issues"
Documentation = "https://el-paso.readthedocs.io/en/latest/"
[tool.bumpver]
current_version = "1.0.3rc0"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['version = "{version}"']
"el_paso/__init__.py" = ['__version__ = "{version}"']