-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.5 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
52
53
54
55
56
57
58
[project]
name = "p2obt"
dynamic = ["version"]
description = "The Phase 2 OB tools (p2obt) automate the MATISSE observation preparation/upload."
requires-python = ">=3.9"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["astronomy", "observations", "observation-preparation", "VLT"]
authors = [
{name = "Marten Scheuck", email = "martenscheuck@gmail.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Framework :: Sphinx",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"astropy>=6.0.1",
"astroquery>=0.4.7",
"attrs>=24.2.0",
"numpy>=1.26.4",
"openpyxl>=3.1.5",
"p2api>=1.0.10",
"pandas>=2.2.3",
"toml>=0.10.2",
]
[project.urls]
repository = "https://github.com/MBSck/p2obt"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "p2obt.__version__"}
[tool.uv]
dev-dependencies = [
"numpydoc>=1.8.0",
"pydata-sphinx-theme>=0.16.0",
"pytest>=8.3.3",
"sphinx>=7.4.7",
"sphinx-autobuild>=2024.10.3",
"sphinx-autodoc-typehints>=2.3.0",
]
[tool.setuptools]
include-package-data = true