-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (80 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (80 loc) · 2.07 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sage-gw"
version = "0.1.0"
description = "Physics-informed representation learning for gravitational-wave discovery"
readme = "README.md"
authors = [
{ name = "Narenraju Nagarajan" },
{ name = "Christopher Messenger" },
]
requires-python = ">=3.9"
license = { text = "GPL-3.0-or-later" }
keywords = [
"gravitational waves",
"compact binary coalescence",
"machine learning",
"deep learning",
"signal detection",
"matched filter",
"LIGO",
"PyTorch",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"pandas>=2.0",
"h5py>=3.8",
"tqdm>=4.65",
"matplotlib>=3.7",
"scikit-learn>=1.3",
"astropy>=5.3",
"gwpy>=3.0",
"torch>=2.1",
]
[project.optional-dependencies]
lal = [
"lalsuite>=7.0",
"pycbc>=2.2",
]
[project.urls]
Homepage = "https://github.com/nnarenraju/sage"
Documentation = "https://sage-gw.readthedocs.io"
Repository = "https://github.com/nnarenraju/sage"
"Bug Tracker" = "https://github.com/nnarenraju/sage/issues"
Paper = "https://doi.org/10.1103/zwj9-ycyz"
Zenodo = "https://doi.org/10.5281/zenodo.20375078"
[tool.setuptools.packages.find]
where = ["."]
include = ["sage*"]
exclude = ["sage.egg-info*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["sage"]
omit = [
"sage/plotting/*",
"sage/benchmark/*",
"sage/data/primer/*",
]
[tool.coverage.report]
show_missing = true
skip_covered = false
[tool.black]
line-length = 88