-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.76 KB
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
[build-system]
# XXX: If your project needs other packages to build properly, add them to this list.
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "tabsim"
version = "0.0.13"
license = {file = "LICENSE"}
readme = "README.md"
# dynamic = ["version", "readme"]
authors = [
{name = "Chris Finlay", email = "christopher.finlay@epfl.ch"},
]
maintainers = [
{name = "Chris Finlay", email = "christopher.finlay@epfl.ch"}
]
description = "Trajectory-based Radio Frequency Interference (RFI) simulations for radio interferometeric data."
requires-python = ">=3.9"
dependencies = [
"jax", "dask", "xarray", "zarr<3.0.0",
"dask-ms>=0.2.21", "scipy", "tqdm", "matplotlib",
"astropy", "spacetrack", "skyfield", "numpy", "pyyaml",
]
[project.optional-dependencies]
gpu = ["jax[cuda12]"]
sat = ["regions"]
# ps = ["TGEpy @ git+https://github.com/chrisfinlay/TGEpy.git"]
# all = ["jax[cuda12]", "regions", "bdsf", "TGEpy @ git+https://github.com/chrisfinlay/TGEpy.git"]
# all_cpu = ["regions", "bdsf", "TGEpy @ git+https://github.com/chrisfinlay/TGEpy.git"]
ipy = ["ipython", "ipykernel"]
test = ["pytest"]
docs = ["sphinx", "sphinx-rtd-theme"]
[project.urls]
Repository = "https://github.com/chrisfinlay/tab-sim.git"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
tabsim = ["data/**/*"]
[project.scripts]
tle-region = "tabsim.scripts.tle_sat_region:main"
ast-region = "tabsim.scripts.ast_region:main"
flag-data = "tabsim.scripts.flag_data:main"
sim-vis = "tabsim.scripts.sim_vis:main"
write-config = "tabsim.scripts.write_config_from_ms:main"
tabsim-setup-spacetrack = "tabsim.scripts.setup_spacetrack_login:main"
tabsim-import-tles = "tabsim.scripts.import_tle_files:main"