-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (82 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (82 loc) · 1.83 KB
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
91
92
[tool.poetry]
name = "dane_workflows"
version = "0.2.8"
description = "Library providing batch upload & monitoring for (DANE) processing environments"
readme = "README.md"
authors = [
"jblom <jblom@beeldengeluid.nl>",
"mwigham <mwigham@beeldengeluid.nl>",
"Nanne van Noord <n.j.e.vannoord@uva.nl>"
]
license = "Apache License 2.0"
repository = "https://github.com/beeldengeluid/dane-workflows"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "dane_workflows" }
]
[tool.poetry.dependencies]
python = "^3.11"
pika = "^1.2.1"
yacs = "^0.1.8"
requests = "^2.28.0"
slack-sdk = "^3.18.1"
types-PyYAML = "^6.0.10"
dane = "^0.3.5"
pathspec = "^0.10.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
mockito = "^1.3.1"
flake8 = "^4.0.1"
black = "^22.3.0"
types-requests = "^2.27.31"
[tool.poetry.group.dev.dependencies]
mypy = "^1.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests/unit_tests",
]
addopts = [
# "--cov",
]
[tool.coverage.run]
omit = [
"tests/*"
]
[tool.black]
line-length = 88
target_version = ['py311']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| build
| dist
)/
)
'''
[tool.mypy]
python_version = "3.11"
[[tool.mypy.overrides]]
module = [
'dane.*',
'mockito',
'pika',
'yaml',
'yacs.*',
'dane_workflows.*',
]
ignore_missing_imports = true