-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
86 lines (75 loc) · 2.26 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "tilepy"
description = "Computation of the tiling scheduling of large localization uncertainty region event with multi-wavelength pointing telescopes."
readme = "README.md"
authors = [
{name = "Monica Seglar-Arroyo, Halim Ashkar, Fabian Schussler, Mathieu de Bony", email = "[email protected]"},
]
maintainers = [
{name = "Monica Seglar-Arroyo", email = "[email protected]"},
{name = "Halim Ashkar", email = "[email protected]"},
{name = "Fabian Schussler", email = "[email protected]"},
{name = "Mathieu de Bony", email = "[email protected]"},
]
license = {file = "LICENSE.rst"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
"Development Status :: 5 - Production/Stable",
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
'astropy',
'scipy<1.14.0',
'healpy==1.16.2',
'ipython',
'matplotlib<3.9.0',
'MOCpy',
'numpy',
'pandas',
'pytz',
'ephem',
'gdpyc',
'tables',
'fastparquet',
'skyfield',
'mhealpy>=0.3.0,<0.4',
'ligo.skymap>=2.0.0',
]
[project.optional-dependencies]
tests = [
"pytest >= 7.0",
"pytest-cov",
"tomli",
]
dev = [
"setuptools_scm[toml]",
]
all = [
# self-reference with all extras to simplify
"tilepy[tests,docs,dev]",
]
[project.scripts]
Tiling_Observations = "tilepy.scripts.Tiling_Observations:main"
PlottingTwoCampaigns = "tilepy.scripts.PlottingTwoCampaigns:main"
[project.urls]
repository = "https://github.com/astro-transients/tilepy"
documentation = "https://github.com/astro-transients/tilepy"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
exclude = [
"tilepy._dev_version",
]
[tool.setuptools_scm]
write_to = "src/tilepy/_version.py"