-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.13 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
[tool.poetry]
name = "kuibit"
version = "1.0.0"
description = "Read and analyze Einstein Toolkit simulations."
authors = ["Gabriele Bozzola <[email protected]>"]
maintainers = ["Gabriele Bozzola <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/sbozzolo/kuibit"
repository = "https://github.com/sbozzolo/kuibit"
documentation = "https://sbozzolo.github.io/kuibit"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sbozzolo/kuibit/issues"
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.18.5"
scipy = "^1.5.2"
h5py = ">=2.10.0"
numba = { version = "^0.51.2", optional = true }
lalsuite = { version = "^6.77", optional = true }
pycbc = { version = "^1.16.10", optional = true }
[tool.poetry.dev-dependencies]
black = "^20.8b1"
coverage = "^5.3"
Sphinx = "^3.2.1"
nbsphinx = "^0.7.1"
jupyter = "^1.0.0"
matplotlib = "^3.3.2"
mayavi = "^4.7.2"
jedi = "^0.17.2"
[tool.poetry.extras]
full = ["numba", "lalsuite", "pycbc"]
[tool.black]
line-length = 79
exclude = '''
/(
\.git
| docs
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"