Skip to content

Commit

Permalink
Merge pull request macauff#64 from hombit/pyproject.toml
Browse files Browse the repository at this point in the history
Update pyproject.toml for modern setuptools
  • Loading branch information
Onoddil authored Oct 12, 2023
2 parents 419db2f + d6b054d commit 8f11c94
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
29 changes: 27 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
[build-system]
requires = [ "setuptools >= 35.0.2, < 60.0", "wheel >= 0.29.0", "numpy"]
build-backend = "setuptools.build_meta"
requires = [ "setuptools", "wheel", "oldest-supported-numpy"]
build-backend = "setuptools.build_meta"

[project]
name = "macauff"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"astropy",
"matplotlib",
"numpy",
"pandas",
"skypy",
"speclite",
]

[project.optional-dependencies]
test = [
"pytest-astropy",
"scipy",
]
docs = [
"sphinx-astropy",
"sphinx-fortran",
"six",
]
9 changes: 0 additions & 9 deletions setup.cfg

This file was deleted.

0 comments on commit 8f11c94

Please sign in to comment.