-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (33 loc) · 999 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
38
[tool.poetry]
name = "fitburst"
version = "0.1.0"
description = "fitburst - A Codebase for Direct Modeling of Radio Dynamic Spectra"
authors = ["Emmanuel Fonseca <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["frb", "radio burst", "pulsar", "dispersion measure"]
homepage = "https://github.com/CHIMEFRB/fitburst"
documentation = "https://chimefrb.github.io/fitburst/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/CHIMEFRB/fitburst/issues"
"Source" = "https://github.com/CHIMEFRB/fitburst"
[tool.poetry.dependencies]
python = "^3.8"
matplotlib = ">=3.1"
numpy = ">=1.17"
pandas = ">=1.1"
pytz = "^2023.3"
pyyaml = ">=5.3"
scipy = ">=1.5"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.2"
mkdocs-material = ">=9.4.8"
pymdown-extensions = ">=10.3.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
black = "^23.7.0"
pre-commit = "^3.3.3"
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"