-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (53 loc) · 1.51 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gw_eccentricity"
dynamic = ["version", "readme"]
description = "Defining eccentricity for gravitational wave astronomy."
authors = [
{ name = "Md Arif Shaikh", email = "arifshaikh.astro@gmail.com" },
{ name = "Vijay Varma", email = "vijay.varma392@gmail.com" }
]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["black-holes", "gravitational-waves"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"h5py",
"lalsuite",
"sxs",
"scri"
]
[project.scripts]
gw-eccentricity-postprocess = "gw_eccentricity.postprocess.postprocess_cli:main"
[project.optional-dependencies]
postprocess = [
"mpi4py",
"pyarrow",
"pandas",
"bilby",
"joblib",
"tqdm"
]
[project.urls]
Homepage = "https://github.com/vijayvarma392/gw_eccentricity"
Repository = "https://github.com/vijayvarma392/gw_eccentricity"
Issues = "https://github.com/vijayvarma392/gw_eccentricity/issues"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "examples*", "docs*"]
[tool.setuptools.dynamic]
version = { attr = "gw_eccentricity.gw_eccentricity.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }