-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 833 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
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "uvtools"
description = "Tools useful for the handling, visualization, and analysis of interferometric data."
authors = [
{name="HERA Team"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"six",
"scipy",
"pyuvdata>=2.4.5",
"astropy>5.1"
]
dynamic = [
"version",
]
[project.optional-dependencies]
aipy = ["aipy>=3.0.5"]
dev = [
"pytest",
"pytest-cov",
"aipy>=3.0.5",
"pre-commit"
]
[tool.setuptools_scm]
write_to = "uvtools/_version.py"
parentdir_prefix_version = "uvtools-"
fallback_version = "0.0.0"
[tool.setuptools]
packages = ["uvtools"]