forked from ReadingClouds/Subfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 974 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 974 Bytes
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
[build-system]
# XXX: If your project needs other packages to build properly, add them to this list.
requires = ["setuptools >= 64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "Subfilter"
dynamic = ["version"]
authors = [
{ name='Peter Clark', email='p.clark@reading.ac.uk'},
{ name='Todd Jones', email='t.r.jones@reading.ac.uk'},
]
license='MIT'
description='python code to compute sub-filter quantities from MONC output.'
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"dask",
"scipy",
"xarray",
"netCDF4",
"tqdm",
"loguru",
]
[tool.setuptools.packages.find]
where = ["src/"]
#include = ["mynamespace.subpackage_a"]
[project.urls]
Homepage = "https://github.com/ReadingClouds/Subfilter"
Issues = "https://github.com/ReadingClouds/Subfilter/issues"
[tool.setuptools_scm]