-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = [
"setuptools>=78",
"setuptools_scm>=8",
"numpy>=1.7"
]
build-backend = "setuptools.build_meta"
[project]
name = "fitsio"
authors = [
{name = "Erin Scott Sheldon", email = "erin.sheldon@gmail.com"},
]
description = "A full featured python library to read from and write to FITS files."
dynamic = ["version"]
license = "GPL-2.0-or-later"
license-files = ["LICENSE.txt"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Astronomy",
"Intended Audience :: Science/Research"
]
dependencies = ["numpy>=1.7"]
requires-python = ">=3.9"
[project.urls]
home = "https://github.com/esheldon/fitsio"
[tool.setuptools]
include-package-data = true
packages = {find = {exclude=["patches*", "zlib*"]}}
[tool.setuptools_scm]
write_to = "fitsio/_version.py"
write_to_template = "__version__ = '{version}'\n"