Skip to content

Commit

Permalink
Migrate from setup.py/setup.cfg to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
olebole committed Dec 29, 2023
1 parent 2ed0f26 commit 938fd1d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 70 deletions.
33 changes: 33 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[project]
name = "pyraf"
dynamic = [ "version" ]
license = {text = "BSD 3-Clause"}
authors = [
{name = "Rick White"},
{name = "Perry Greenfield"},
{name = "Chris Sontag"},
{name = "Ole Streicher"}
]
keywords = ["astronomy", "astrophysics", "utility", "iraf"]
requires-python = ">=3.6"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy"
]
description = "Pythonic interface to IRAF that can be used in place of the existing IRAF CL"
readme = {file = "README.rst", content-type = "text/x-rst"}
dependencies = ["configobj", "numpy"]

[project.optional-dependencies]
docs = ["astropy-sphinx-theme", "numpydoc", "sphinx"]
test = ["astropy", "pytest"]

[project.scripts]
pyraf = "pyraf:main"

[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
70 changes: 0 additions & 70 deletions setup.cfg

This file was deleted.

0 comments on commit 938fd1d

Please sign in to comment.