-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (35 loc) · 929 Bytes
/
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
[project]
name = "visualCaseGen"
version = "0.1.1"
authors = [
{ name = "Alper Altuntas, NCAR", email = "[email protected]" }
]
description = "A GUI to guide CESM users when creating a new case."
readme = "README.md"
license = { file = "LICENSE.md" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: LGPL",
"Programming Language :: Python",
"Framework :: Jupyter"
]
requires-python = ">=3.11.10,<3.12"
dependencies = [
"ipykernel>=6.29,<6.30",
"ipython>=8.2,<8.3",
"jupyterlab>=4.0,<4.1",
"jupyterlab_server>=2.25,<2.26",
"ipywidgets>=8.1.1,<8.2",
"PyYAML>=6.0,<6.1",
"z3-solver>=4.12.3,<4.13",
"networkx>=3.3,<3.4",
"netcdf4>=1.6,<1.7",
"xarray>=2023.12,<2024",
"black>=24.1,<24.2",
"pytest>=8.0,<8.1"
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ProConPy", "visualCaseGen"]