Skip to content

Commit

Permalink
Merge pull request #6 from hdrake/switch-to-pyproject-toml
Browse files Browse the repository at this point in the history
Switch from setup.py to pyproject.toml
  • Loading branch information
hdrake authored Aug 14, 2023
2 parents 5fdab9b + 941bf7d commit 2c70710
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 14 deletions.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[project]
name = "regionate"
version = "0.0.1"
authors = [
{name="Henri F. Drake", email="[email protected]"},
]
description = "A package for creating xgcm-grid consistent regional masks and boundaries."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/hdrake/regionate"
"Bugs/Issues/Features" = "https://github.com/hdrake/regionate/issues"
"Sibling package" = "https://github.com/hdrake/sectionate"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
14 changes: 0 additions & 14 deletions setup.py

This file was deleted.

0 comments on commit 2c70710

Please sign in to comment.