forked from moble/scri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.55 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
57
58
[tool.poetry]
name = "scri"
version = "2022.8.3"
description = "Time-dependent functions of spin-weighted spherical harmonics"
readme = "README.md"
license = "MIT"
authors = ["Michael Boyle <[email protected]>"]
homepage = "https://github.com/moble/scri"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
numpy = ">=1.20"
scipy = "^1.0"
numba = ">=0.55"
h5py = "^3"
numpy-quaternion = ">=2022.4"
spherical-functions = ">=2022.4"
spinsfast = ">=2022.4"
sxs = ">=2022.3.4"
tqdm = ">=4.48.2, <4.61.2"
importlib-metadata = {version = "^1.0", python = "<3.8"}
mkdocs = {version = "^1.1.2", optional = true}
mktheapidocs = {extras = ["plugin"], version = "^0.2.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^7.0"
pytest-cov = ">=2.10.1"
mkdocs = "^1.1.2"
mktheapidocs = {extras = ["plugin"], version = "^0.2.0"}
black = ">=22.1"
[tool.poetry.extras]
mkdocs = ["mkdocs"]
mktheapidocs = ["mktheapidocs"]
[tool.black]
line-length = 120
target-version = ['py38','py39','py310']
[tool.pytest.ini_options]
minversion = "6.0"
norecursedirs = ".* build dist *.egg-info install ENV gh-pages __pycache__"
junit_family="xunit2"
addopts = "-v --tb=short --doctest-glob=''"
[tool.yapf]
allow_split_before_default_or_named_assigns = false
column_limit = 120
dedent_closing_brackets = true
disable_ending_comma_heuristic = true
join_multiple_lines = false
split_before_arithmetic_operator = true
split_before_expression_after_opening_paren = true
split_before_first_argument = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"