-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (29 loc) · 986 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "extrapops"
authors = [
{name = "JesusTorrado"},
]
version = "0.9"
description = "Phenomenological extragalactic binary populations and their LISA-band GW emission."
readme = "README.rst"
license = {text = "LGPL-3.0-or-later"}
requires-python = ">=3.8"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = ["extragalactic", "BBH", "black holes", "gravitational waves"]
dependencies = [
"numpy>=1.20", "scipy>=1.6", "pandas>=1.2", "PyYAML>=5.3", "tqdm"
]
[project.urls]
"Homepage" = "https://github.com/JesusTorrado/extrapops"
"Bug Tracker" = "https://github.com/JesusTorrado/extrapops/issues"
[tool.setuptools]
packages = ["extrapops"]