-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
90 lines (70 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[tool.poetry]
name = "data_pipeline_api"
version = "0.8.0"
description = "Python api to interact with the Fair Data Pipeline"
authors = [
"Ryan J Field <[email protected]>",
"Dennis Reddyhoff <[email protected]>",
"Robert D Turner <[email protected]>",
"Bruno Viola <[email protected]>",
"Kristian Zarebski <[email protected]>"
]
homepage = "https://www.fairdatapipeline.org/"
repository = "https://github.com/FAIRDataPipeline/pyDataPipeline"
license = "GNU General Public License v3.0"
packages = [
{include = "data_pipeline_api"}
]
readme = "README.md"
keywords = [
"FAIR Data Pipeline",
"FAIR",
"Data Management",
"Provenance"
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
requests = "^2.23.0"
matplotlib = "3.*"
scipy = "^1.7.3"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
black = "*"
mypy = "^0.931"
flake8 = "*"
poetry = "^1.1.12"
pytest-mock = "*"
pytest-dependency = "*"
pytest-cov = "*"
pre-commit = "^2.17.0"
isort = "^5.10.1"
Sphinx = "^4.3.2"
sphinx-rtd-theme = "^1.0.0"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/FAIRDataPipeline/pyDataPipeline/issues"
[tool.isort]
profile = 'black'
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 79
[tool.black]
line-length = 79
[tool.pytest.ini_options]
addopts = '-s -v --cov=data_pipeline_api --cov-report=html --cov-report=term'
markers = [
"pipeline: tests for 'pipeline' module ",
"issue: tests for raising issues ",
"utilities: tests for 'utilities' functions ",
"apiversion: tests for api versioning ",
]
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_untyped_calls = true