-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.24 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
59
60
61
62
63
[tool.poetry]
name = "gaul"
version = "0.4.2"
description = ""
authors = ["Jeff Shen <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/al-jshen/gaul"
repository = "https://github.com/al-jshen/gaul"
documentation = "https://gaul.readthedocs.io"
keywords = ["jax"]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
coverage = {extras = ["toml"], version = "^6.3.2"}
codecov = "^2.1.12"
isort = "^5.10.1"
jupyterlab = "^3.3.2"
matplotlib = "^3.5.1"
ipywidgets = "^7.7.0"
docformatter = "^1.4"
Sphinx = "^4.5.0"
pandas = ">=1.3,<1.4"
seaborn = "^0.11.2"
pears = "^0.1.1"
[tool.coverage.paths]
source = ["gaul", "*/site-packages"]
[tool.coverage.run]
parallel = true
branch = true
source = ["gaul"]
omit = [
"docs/*",
"tests/*",
"*__init__*"
]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"raise NotImplementedError",
"raise ImportError",
"except ImportError",
"def __len__",
"def __repr__",
"logging.warning",
"deprecation_warning",
"deprecated",
"if tqdm is None"
]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"