Skip to content

Commit

Permalink
add a pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
agrouaze committed Dec 19, 2022
1 parent 89ce06b commit 1e13275
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[project]
name = "dspec"
requires-python = ">= 3.10"
license = {text = "MIT"}
dependencies = [
"xarray",
"numpy",
"shapely",
]
dynamic = ["version"]

[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["stac_fastapi.opensearx"]

[tool.setuptools_scm]
fallback_version = "999"

[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"

0 comments on commit 1e13275

Please sign in to comment.