-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 980 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
[build-system]
requires = ["setuptools >= 61"] # PEP 621
build-backend = "setuptools.build_meta"
[project]
name = "zoom_mask_creator"
description = "Make Lagrangian mask outlines for Virgo Consortium-style zoom-in simulations."
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD 3-Clause License"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD 3-Clause License",
]
dependencies = [
"numpy<1.24",
"h5py",
"pyaml",
"scipy",
"mpi4py",
"matplotlib",
"pyread_eagle @ git+https://github.com/kyleaoman/pyread_eagle.git",
"pyread_swift>=1.1.0",
"toml",
]
version = "0.1.0"
authors = [
{ name="Stuart McAlpine", email="[email protected]" },
]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
zoom-mask-creator = "zoom_mask_creator.scripts.run_standalone:main"