-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
49 lines (43 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cupid"]
[project]
name = "cupid"
version = "0.0.1"
authors = [
{ name="Lev Romashkov", email="[email protected]" },
{ name="Teagan King", email="[email protected]" },
{ name="Michael Levy", email="[email protected]" },
]
description = "Notebook-Based, Super CUstomizable Infrastructure for Diagnostics"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"black",
"click",
"dask",
"dask-jobqueue",
"intake",
"intake-esm",
"jinja2",
"jupyter-book",
"pandas",
"papermill",
"xarray",
"pyyaml",
"ploomber==0.22.3"
]
[project.urls]
repository = "https://github.com/NCAR/CUPiD"
documentation = "https://nbscuid.readthedocs.io"
[project.scripts]
cupid-run = "cupid.run:run"
cupid-build = "cupid.build:build"
cupid-clear = "cupid.clear:clear"