-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.11 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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flits"
version = "0.1.0"
description = "Fitting Likelihoods In Time-Frequency Spectra: FRB scattering and scintillation pipelines"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Jakob Faber" }]
dependencies = [
"numpy>=1.20",
"scipy>=1.7",
"matplotlib>=3.4",
"pandas>=1.3",
"emcee>=3.1",
"lmfit>=1.0",
"PyYAML>=5.4",
"tqdm>=4.62",
"corner>=2.2",
"chainconsumer>=0.34",
]
[project.scripts]
flits-scat = "scattering.run_scat_analysis:main"
flits-scint = "scintillation.scint_analysis.run_analysis:main"
flits-batch = "flits.batch.cli:main"
flits-configs = "flits.batch.config_generator:main"
[tool.setuptools.packages.find]
where = ["."]
namespaces = true
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
testpaths = ["tests", "scattering/scripts", "scattering/scat_analysis/tests", "scintillation/scint_analysis/tests", "flits/batch/tests"]
filterwarnings = [
"ignore::DeprecationWarning",
]