generated from GEOS-ESM/geos-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (54 loc) · 1.32 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tcn"
version = "2024.0.0"
authors = [
{ name = "NASA Advanced Software and Technology Group", email = "[email protected]" },
]
description = "Software Modernization Team code sandbox (a.k.a TCN: The Code Nebulae)"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
]
dependencies = [
"click",
"pyyaml",
"numpy",
"pdoc",
"pynvml",
"psutil",
"clang-format",
"jinja2",
"fprettify",
"black",
"dash",
"dash_bootstrap_components",
"dask",
"plotly",
"kaleido",
"pre-commit",
"xarray",
"netcdf4==1.6.3",
"f90nml",
"GitPython",
"pandas",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.yaml", "*.tpl"]
[project.scripts]
tcn-ci = "tcn.ci.dispatch:cli"
tcn-hws = "tcn.hws.cli:cli"
tcn-fpy = "tcn.py_ftn_interface.cli:cli"
tcn-plots = "tcn.plots.cli:cli"
tcn-validation = "tcn.validation.cli:cli"