-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.46 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "rms-psfmodel"
dynamic = ["version"]
description = "Routines for converting to and from psfmodel dates"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"astropy",
"numpy",
"scipy"
]
license = {text = "Apache-2.0"}
maintainers = [
{name = "Robert S. French", email = "[email protected]"}
]
keywords = ["psfmodel"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows"
]
[project.urls]
Homepage = "https://github.com/SETI/rms-psfmodel"
Repository = "https://github.com/SETI/rms-psfmodel"
Source = "https://github.com/SETI/rms-psfmodel"
Issues = "https://github.com/SETI/rms-psfmodel/issues"
[tool.setuptools]
packages = ["psfmodel"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "psfmodel/_version.py"