-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (47 loc) · 1.07 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python']
[project]
name = 'hbstools'
version = '0.3.0'
description = "A tool for searching GRBs in data from HERMES-Pathfinder"
readme = 'README.md'
requires-python = '>=3.11'
dependencies = [
'numpy>=1.26.3',
'pandas>=2.1.4',
'matplotlib>=3.8.2',
'astropy>=6.0.0',
'rich>=13.7.0',
'click>=8.0.0',
'pyyaml>=6.0.1',
'schema>=0.7.5',
]
keywords = [
"HERMES", "HERMES-Pathfinder",
"Gamma-ray Burst", "GRB",
"Poisson-FOCuS"
]
license = {file = 'LICENSE'}
authors = [
{name = 'Giuseppe Dilillo', email = '[email protected]'},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: C",
]
[project.optional-dependencies]
dev = [
"ipython>=8.26.0",
"black>=23.12.1",
"isort>=5.13.2",
"mypy>=1.8.0",
"pandas-stubs>=2.1.4",
"types-pyyaml>=6.0.12",
]
[project.scripts]
mercury = 'mercury.mercury:cli'