-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (92 loc) · 2 KB
/
pyproject.toml
File metadata and controls
103 lines (92 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "cogwheel-pe"
dynamic = ["version"]
requires-python = ">= 3.9"
authors = [
{name = "Javier Roulet"},
{name = "Tejaswi Venumadhav"},
{name = "Jonathan Mushkin"},
{name = "Tousif Islam"},
{name = "Seth Olsen"},
{name = "Jay Wadekar"},
]
dependencies = [
"ipykernel",
"ipympl",
"ipywidgets",
"lalsuite",
"matplotlib",
"notebook",
"numba",
"pandas >=2.0",
"pyarrow",
"scipy",
"setuptools_scm",
"gwpy",
"dynesty",
"nautilus-sampler",
"zeus-mcmc",
]
maintainers = [
{name = "Javier Roulet", email = "jroulet@uchicago.edu"}
]
description = "Parameter estimation of gravitational wave sources"
readme = "README.md"
license = "GPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
dev = [
"build",
"grayskull",
]
full = [
"pymultinest",
]
docs = [
"sphinx",
"numpydoc",
"furo",
]
[project.urls]
"Source" = "https://github.com/jroulet/cogwheel"
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.package-data]
"cogwheel.data" = ["events_metadata.csv",
"example_asds/*.npy"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_file = "cogwheel/_version.py"
[tool.pylint.main]
ignore = ["CVS", "factorized_qas", "_version.py"]
ignored-modules = [
"scipy.special",
"scipy.stats",
"scipy.sparse",
"astropy",
"lal",
"lalsimulation",
"gwosc",
"gwpy",
"dynesty",
]
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "Run", "_",
"ra", "m1", "m2", "q", "dt", "ax"]
[tool.pylint.format]
max-line-length = 79
[tool.pylint.imports]
allow-any-import-level = [
"cogwheel.waveform_models.xode",
"pymultinest",
]