-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
56 lines (49 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "nenupy"
description = "NenuFAR Python package"
dynamic = ["version"]
authors = [
{ name = "Alan Loh", email = "alan.loh@obspm.fr" }
]
requires-python = ">=3.8"
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research"
]
readme = "README.md"
dependencies = [
"astropy",
"reproject",
"pyproj",
"dask[array]",
"healpy",
"pytz",
"h5py"
]
[project.optional-dependencies]
mocpy = [
"mocpy"
]
[project.urls]
homepage = "https://github.com/AlanLoh/nenupy"
documentation = "https://nenupy.readthedocs.io"
repository = "https://github.com/AlanLoh/nenupy"
[tool.setuptools]
script-files = [
"bin/nenupy_vcr_coordinates",
"bin/nenupy_parallactic_correction",
"bin/nenupy_src_vis"
]
[tool.setuptools.packages.find]
include = ["nenupy", "nenupy.*"]
exclude = []
[tool.pytest.ini_options]
pythonpath = "."
addopts = [
"--import-mode=importlib",
]
[tool.setuptools.dynamic]
version = {attr = "nenupy.__version__"}