-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (47 loc) · 1.41 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
51
52
53
54
55
56
[build-system]
requires = ["setuptools", "cython", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "glow"
version = "0.1"
requires-python = ">=3.7"
dependencies = [
"cython",
"numpy",
"scipy",
"matplotlib",
"pandas",
"sphinx",
"numpydoc",
"sphinx_rtd_theme",
"mpmath",
"astropy",
"colossus",
"pycbc",
]
readme = "README.md"
license = {text = "GPL3"}
description = "Fast and accurate lensed gravitational wave signals given any lens distribution."
keywords = ["gravitational waves", "lensing", "gravitational lensing"]
authors = [{name = "GLoW team", email = "[email protected]"}]
maintainers = [
{name = "Hector Villarrubia-Rojo", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
]
[project.urls]
"Homepage" = "https://github.com/miguelzuma/glow_public"
"Bug Reports" = "https://github.com/miguelzuma/glow_public/issues"
"Documentation" = "https://miguelzuma.github.io/GLoW_public"
[tool.setuptools]
packages = ["glow", "glow.wrapper"]
package-dir = {"glow" = "."}
package-data = {"glow" = ["wrapper/*.so", "sensitivities/*.txt"]}