-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.58 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
51
[build-system]
requires = ["setuptools>=68.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pmoired"]
exclude = ["banner"]
[tool.setuptools.package-data]
pmoired = ["newVltiHzn_obsDoors.txt",
"transir_gravity.pckl"]
[tool.setuptools.dynamic]
version = {attr='pmoired.__version__'}
[project]
name = "pmoired"
dynamic = ["version"]
requires-python = ">=3.8"
readme = {file="README.md", content-type="text/markdown"}
license = {file="LICENCE.txt"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = ["optical interferometry", "visualization", "display", "OIFITS",
"data modelling", "astrophysics"]
description = "Display and fit Optical (spectro-)Interferometric OIFITS data"
authors = [
{name = "Antoine Mérand", email = "[email protected]"},
]
dependencies = [
"scipy >= 1.10.0",
"numpy >= 1.24.0",
"matplotlib >= 3.8.0",
"astropy >= 6.0.0",
"astroquery >= 0.4.4",
'importlib_resources; python_version < "3.9"'
]
[project.urls]
Repository = "https://github.com/amerand/PMOIRED"
Issues = "https://github.com/amerand/PMOIRED/issues"
Bibliography = "https://ui.adsabs.harvard.edu/public-libraries/dz7RG915Swq5yAB1KwmgTA"
Publications = "https://ui.adsabs.harvard.edu/search/p_=0&q=%20full%253A%22PMOIRED%22"