-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
82 lines (71 loc) · 2.03 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
[project]
name = "folio_migration_tools"
version = "1.9.0rc2"
description = "A tool allowing you to migrate data from legacy ILS:s (Library systems) into FOLIO LSP"
authors = [
{name = "Theodor Tolstoy", email = "[email protected]"},
{name = "Lisa Sjögren"},
{name = "Brooks Travis", email = "[email protected]"},
{name = "Jeremy Nelson"},
{name = "Clinton Bradford"}
]
license = "MIT"
readme = "README.md"
keywords = ["FOLIO", "ILS", "LSP", "Library Systems", "MARC21", "Library data"]
[project.urls]
documentation = "https://folio-migration-tools.readthedocs.io/en/latest/"
homepage = "https://github.com/folio-fse/folio_migration_tools"
repository = "https://github.com/FOLIO-FSE/folio_migration_tools"
[project.scripts]
folio-migration-tools = "folio_migration_tools.__main__:main"
[tool.coverage.report]
show_missing = false
fail_under = 10
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["folio_migration_tools"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = "^3.9"
folioclient = "^0.61.2"
pyhumps = "^3.7.3"
defusedxml = "^0.7.1"
python-dateutil = "^2.8.2"
folio-uuid = "^0.2.8"
pymarc = "^5.2.3"
pydantic = "^1.10.2"
argparse-prompt = "^0.0.5"
deepdiff = "^6.2.3"
pyaml = "^21.10.1"
python-i18n = "^0.3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
lxml = "^4.9.1"
coverage = {extras = ["toml"], version = "^6.5.0"}
pytest-cov = "^4.0.0"
black = "^22.10.0"
flake8 = "^5.0.4"
mypy = "^0.982"
flake8-black = "^0.3.3"
flake8-bugbear = "^22.9.23"
flake8-bandit = "^4.1.1"
flake8-isort = "^5.0.0"
flake8-docstrings = "^1.6.0"
darglint = "^1.8.1"
sphinx = "^5.3.0"
sphinx-autodoc-typehints = "^1.19.4"
myst-parser = "^0.18.1"
pandas = "^1.5.3"
types-requests = "^2.28.11.17"
types-python-dateutil = "^2.8.19.11"
ipykernel = "^6.29.5"
[tool.poetry.extras]
docs = ["m2r", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "toml"]