-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
44 lines (38 loc) · 812 Bytes
/
setup.cfg
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
[metadata]
name = gwpv
version = 0.4.0
description = Visualize gravitational waves with ParaView
author = Nils L. Vu
author_email = [email protected]
url = https://nilsvu.github.io/gwpv
license = MIT
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find_namespace:
python_requires = >=3.7
install_requires =
astropy
h5py >= 3.0.0
importlib_resources; python_version < "3.10"
numpy
matplotlib
pyyaml
quaternionic
requests
rich
scipy
spherical
sxs
[options.packages.find]
include = gwpv*
[options.package_data]
* = *.yaml
[options.entry_points]
console_scripts =
gwrender = gwpv.render.__main__:main
[flake8]
max-line-length = 80
extend-ignore = E203