-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
68 lines (61 loc) · 1.75 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>=45", "setuptools_scm[toml]>=6.2"]
[project]
name = "pangeo-forge-runner"
dynamic = ["version"]
requires-python = ">=3.9"
description = "Commandline tool to manage pangeo-forge feedstocks"
readme = "README.md"
authors = [
{ name = "Yuvi Panda", email = "[email protected]" }
]
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
license = { text = "Apache-2.0" }
keywords = ["pangeo", "data"]
dependencies = [
"escapism",
"importlib-metadata",
"jsonschema",
"jupyter-repo2docker",
"ruamel.yaml",
"traitlets",
"venvception>=0.0.5",
"fsspec",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
# used by the gpcp feedstock integration tests
"gcsfs",
"s3fs",
# used in some unit tests
"apache-beam",
"zarr",
"xarray",
]
[project.scripts]
pangeo-forge-runner = "pangeo_forge_runner.cli:main"
[project.urls]
Homepage = "https://github.com/pangeo-forge/pangeo-forge-runner"
Tracker = "https://github.com/pangeo-forge/pangeo-forge-runner/issues"
Documentation = "https://pangeo-forge-runner.readthedocs.io/en/latest/"
[tool.setuptools_scm]
write_to = "pangeo_forge_runner/_version.py"
write_to_template = "__version__ = '{version}'"
[tool.setuptools.package-data]
pangeo_forge_runner = ["py.typed"]
[tool.isort]
# Prevent isort & black from fighting each otherd
profile = "black"