-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 971 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "hera_notebook_templates"
description = "Repository for HERA analysis / real-time pipeline notebooks and related support code"
authors = [
{name="HERA Team"},
]
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"matplotlib",
"pandas",
"scipy",
"astropy",
"pyuvdata",
"uvtools",
"hera-qm>=2.1.1",
"hera-calibration>=3.2.2",
"bokeh",
"hera-mc",
"jupyter",
"memory-profiler"
]
dynamic = [
"version",
]
[tool.setuptools_scm]
write_to = "hera_notebook_templates/_version.py"
parentdir_prefix_version = "hera_notebook_templates-"
fallback_version = "0.0.0"
[tool.setuptools]
packages = ["hera_notebook_templates"]
[project.scripts]
hnote = "hera_notebook_templates.cli:main"