-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject-poetry.toml
99 lines (81 loc) · 2.47 KB
/
pyproject-poetry.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
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
# Note that this file contains build instructions for both setuptools (via the
# shared build tool syntax) and Poetry (via Poetry-specific configuration).
# In particular, dependencies must be repeated. Keep these in sync.
[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 = [
# general, likely used all over
"scipy",
"xarray",
"dask",
"mlflow-skinny",
# data download
"intake",
"requests",
"aiohttp",
"intake-xarray",
"gcsfs",
"torch>=1.13.1",
]
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 = ["."] # 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)
[tool.poetry]
name = "gz21_ocean_momentum"
version = "0.2.0"
description = "TODO"
authors = ["Arthur Guillaumin <[email protected]>"]
readme = "README.md"
packages = [{include = "poetry_demo"}]
[tool.poetry.dependencies]
python = "^3.9"
# general, likely used all over
scipy = "*"
xarray = "*"
dask = "*"
mlflow-skinny = "*"
# data download
intake = "*"
requests = "*"
aiohttp = "*"
intake-xarray = "*"
gcsfs = "*"
torch = "^1.13.1"
progressbar2 = "^4.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
[build-system]
#requires = ["setuptools >= 61"]
#build-backend = "setuptools.build_meta"
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"