-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (107 loc) · 2.72 KB
/
pyproject.toml
File metadata and controls
115 lines (107 loc) · 2.72 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tobac"
version = "1.6.3"
authors = [
{ name="Max Heikenfeld", email="[email protected]" },
{ name="William Jones", email="[email protected]" },
{ name="Fabian Senf", email="[email protected]" },
{ name="Sean Freeman", email="[email protected]" },
{ name="Julia Kukulies", email="[email protected]" },
{ name="Kelcy Brunner", email="[email protected]" },
{ name="Sven Starzer", email="[email protected]"}
]
description = "A package for identifying and tracking atmospheric phenomena"
readme = "README.md"
requires-python = ">=3.9,<3.14"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
# always required
dependencies = [
"numpy",
"scipy",
"scikit-image",
"scikit-learn",
"pandas<3",
"matplotlib",
"scitools-iris",
"xarray",
"cartopy",
"trackpy",
"typing_extensions",
]
[project.optional-dependencies]
# required for development
dev = [
"pre-commit",
"black",
"pytest",
"nbconvert",
]
# required to run example notebooks
examples = [
"jupyter",
"notebook",
"pytables",
"s3fs",
"arm_pyart",
"seaborn",
"h5netcdf",
"rioxarray",
"numba",
"dask",
"intake==0.7.0",
"intake-xarray==0.7.0",
"healpix",
"easygems",
]
# All extras combined
all = [
"pre-commit",
"black",
"pytest",
"nbconvert",
"jupyter",
"notebook",
"pytables",
"s3fs",
"arm_pyart",
"seaborn",
"h5netcdf",
"rioxarray",
"numba",
"dask",
"intake==0.7.0",
"intake-xarray==0.7.0",
"healpix",
"easygems==0.1.2",
]
[project.urls]
Homepage = "http://github.com/tobac-project/tobac"
Documentation = "http://tobac.io"
Issues = "http://github.com/tobac-project/tobac/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["tobac*"]
exclude = ["tmp*"]