-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.34 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
[tool.poetry]
name = "prsv-tools"
version = "0.1.0"
description = """
Utilities to ingest to and manage a Preservica \
instance at the New York Public Library\
"""
authors = [
"Hilary Shiue <[email protected]>",
"Nick Krabbenhoeft <[email protected]>",
]
license = "MIT"
readme = "README.md"
packages = [{include = "prsv_tools", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
boto3 = "^1.28.17"
lxml = "^4.9.3"
requests = "^2.31.0"
bagit = "^1.8.1"
schema = "^0.7.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
nox = "^2023.4.22"
mypy = "^1.4.1"
nox-poetry = "^1.0.3"
coverage = "^7.2.7"
pygments = "^2.16.1"
flake8 = "^6.1.0"
black = "^23.7.0"
isort = "^5.12.0"
pytest-mock = "^3.12.0"
[tool.poetry.scripts]
lint_er = 'prsv_tools.ingest.lint_er:main'
lint_ami = 'prsv_tools.ingest.lint_ami:main'
flatten_er_metadata = 'prsv_tools.ingest.flatten_er_metadata_folder:main'
get_schemas = 'prsv_tools.manage.get_schemas:main'
validate_ingest = 'prsv_tools.ingest.ingest_validator:main'
creds = 'prsv_tools.utility.api:main'
retry_workflows = 'prsv_tools.ingest.retry_workflows:main'
[tool.mypy]
exclude = [
'package_er\.py$',
'preservicatoken\.py$'
]
[[tool.mypy.overrides]]
module = "prsv_tools.*"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"