Skip to content

Commit

Permalink
remove setup.cfg and setup.py in favor of pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
alperaltuntas committed Nov 11, 2024
1 parent 2675dcc commit 55ef921
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 50 deletions.
42 changes: 37 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
[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"
]
build-backend = "setuptools.build_meta"
requires-python = ">=3.10"
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",
"matplotlib>3.6,<3.7",
"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"]
42 changes: 0 additions & 42 deletions setup.cfg

This file was deleted.

3 changes: 0 additions & 3 deletions setup.py

This file was deleted.

0 comments on commit 55ef921

Please sign in to comment.