-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (56 loc) · 1.9 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
63
64
65
66
67
68
[build-system]
requires = ["setuptools >= 61"]
build-backend = "setuptools.build_meta"
[project]
version = "0.3.0"
name = "gz21_ocean_momentum"
description = "TODO"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"xarray",
"torch>=1.13.1",
"dask",
"mlflow-skinny",
"scipy", # data analysis, graphing
"matplotlib>=3.7", # analysis, examples
"cartopy>=0.21", # analysis (plotting data)
# data download
"intake",
"intake-xarray",
"gcsfs", # required for downloading CM2.6 via intake (dataset stored on GCP)
"requests",
"aiohttp",
# common CLI packages
"progressbar2>=4.2.0",
"configargparse>=1.7",
]
authors = [
{ name="Arthur Guillaumin", email="[email protected]" },
]
maintainers = [
{ name="Ben Orchard", email="[email protected]" },
{ name="Jack Atkinson", email="[email protected]" },
]
[project.urls]
"Homepage" = "https://github.com/m2lines/GZ21_ocean_momentum"
"Bug Tracker" = "https://github.com/m2lines/GZ21_ocean_momentum/issues"
[project.optional-dependencies]
TEST = ["pytest"]
[tool.setuptools]
# By default, include-package-data is true in pyproject.toml, so you do
# NOT have to specify this line.
include-package-data = true
#[tool.setuptools.packages]
#find = {}
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["gz21_ocean_momentum", "gz21_ocean_momentum.*"] # package names should match these glob patterns (["*"] by default)
#exclude = ["gz21_ocean_momentum.tests*", "examples.py"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)