Skip to content

Commit

Permalink
add setuptools definition
Browse files Browse the repository at this point in the history
  • Loading branch information
lispandfound committed Jun 6, 2024
1 parent f2f4fbc commit 5fd512d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "nshmdb"
authors = "QuakeCoRE"
description = "A library for working with 2022 NSHM fault geometry"
readme = "README.md"
requires-python = ">=3.7"
dynamic = ["dependencies", "version"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from setuptools import setup

setup()

0 comments on commit 5fd512d

Please sign in to comment.