-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (58 loc) · 1.88 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
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "astro-gdt-fermi"
authors = [
{ name = "William Cleveland" },
{ name = "Adam Goldstein" },
{ name = "Daniel Kocevski" },
{ email = "STI-Software@usra.edu" }
]
description = "Gamma-ray Data Tools: Fermi Mission"
readme = "PYPI-README.rst"
license = "Apache-2.0"
license-files = ["license.txt"]
keywords = ['astronomy', 'gammaray', 'gamma-ray', 'usra']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.11"
dependencies = [
'astro-gdt>=2.2.2',
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest"]
docs = ["Sphinx==5.0.2", "astropy-sphinx-theme", "nbsphinx", "sphinx-automodapi"]
[tool.setuptools]
include-package-data = true
script-files = ['scripts/dol4.exe', 'scripts/dol_source_angles.py']
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"gdt.missions.fermi" = ['data/McIlwainL_Coeffs.npy']
"gdt.data" = ['fermi-gbm.urls']
"gdt.missions.fermi.gbm.localization.dol.data" = [
'alocdat_comp.npy',
'band_1deg_5_50_soft.npy',
'band_1deg_50_300_hard.npy',
'band_1deg_50_300_norm.npy',
'band_1deg_50_300_soft.npy',
'comp_1deg_50_300_hard.npy',
'comp_1deg_50_300_norm.npy',
'comp_1deg_50_300_soft.npy',
'earth_points.npy',
]
[tool.setuptools.dynamic]
version = { attr = "gdt.missions.fermi.__version__" }
[project.urls]
Documentation = 'https://astro-gdt-fermi.readthedocs.io/en/latest/'
Repository = 'https://github.com/USRA-STI/gdt-fermi'
Issues = 'https://github.com/USRA-STI/gdt-fermi/issues'