-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added pyproject.toml and removed setup.py
- Loading branch information
1 parent
104ebb0
commit d8294dd
Showing
2 changed files
with
38 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |