Skip to content

Commit

Permalink
Added pyproject.toml and removed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasstolker committed Sep 26, 2024
1 parent 104ebb0 commit d8294dd
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 39 deletions.
38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pycrires"
version = "Data reduction pipeline for VLT/CRIRES+"
authors = [
{name = "Tomas Stolker", email = "[email protected]"},
{name = "Rico Landman", email = "[email protected]"},
]
description = "Data reduction pipeline for VLT/CRIRES+"
readme = "README.rst"
requires-python = ">=3.9"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]

[project.urls]
Documentation = "https://pycrires.readthedocs.io"
Repository = "https://github.com/tomasstolker/pycrires"
Issues = "https://github.com/tomasstolker/pycrires/issues"

[tool.setuptools]
packages = []
py-modules = []

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[tool.setuptools.package-data]
example = ["keywords.txt", "calib_data/*.txt", "calib_data/*.dat"]
39 changes: 0 additions & 39 deletions setup.py

This file was deleted.

0 comments on commit d8294dd

Please sign in to comment.