-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.42 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
59
60
61
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "fftvis"
description = "An FFT-based visibility simulator"
readme = "README.md"
authors = [
{name="Tyler Cox", email='[email protected]'},
{name="Steven Murray", email="[email protected]"}
]
license = {text="MIT"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy",
"matvis>=1.3.0",
"finufft",
"pyuvdata>=3.1.2",
"psutil",
"typer",
"rich",
"ray",
"threadpoolctl",
"numba",
"memray"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"mpi4py",
"pytest",
"pre-commit",
"pytest-cov",
"pytest-xdist",
"pyradiosky",
"pyuvsim[sim]",
"hera_sim"
]
[project.scripts]
fftvis = "fftvis.cli:app"