Skip to content

Commit

Permalink
Added pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
byrdie committed Jan 29, 2024
1 parent 39b68d4 commit 79578a2
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "interface-region-imaging-spectrograph"
authors = [
{name = "Roy T. Smart", email = "roytsmart@gmail.com"},
]
description = "A Python library for analyzing solar observations from the Interface Region Imaging Spectrograph (IRIS)."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"astropy",
]
dynamic = ["version"]

[project.optional-dependencies]
test = [
"pytest",
]
doc = [
"pytest",
"matplotlib",
"graphviz",
"sphinx-autodoc-typehints",
"sphinxcontrib-bibtex",
"pydata-sphinx-theme",
"ipykernel",
"jupyter-sphinx",
"sphinx-favicon",
]

[project.urls]
Homepage = "https://github.com/sun-data/interface-region-imaging-spectrograph"
Documentation = "https://interface-region-imaging-spectrograp.readthedocs.io/en/latest"

[tool.setuptools_scm]

0 comments on commit 79578a2

Please sign in to comment.