-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (54 loc) · 2.07 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
[tool.poetry]
name = "invenio-sip2"
version = "0.6.23"
description = "Invenio module that add a SIP2 communication for library self-check service"
readme = "README.rst"
authors = ["Laurent Dubois <[email protected]>"]
license = "GNU Affero General Public License v3.0"
repository = "https://github.com/inveniosoftware-contrib/invenio-sip2"
documentation = "https://invenio-sip2.readthedocs.io"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 3 - Alpha",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
invenio-base = ">=1.3.0,<2.0.0"
invenio-access = ">=2.0.0,<3.0.0"
invenio-i18n = ">=2.0.0,<3.0.0"
jsonpickle = ">=1.2"
psutil = ">=5.9.0"
pycountry = ">=19.7.15"
python-dateutil = ">=2.8.2"
# Pinned due to before_first_request deprecation https://flask.palletsprojects.com/en/2.2.x/api/#flask.Flask.before_first_request
Flask = ">=2.2.0,<2.3.0"
[tool.poetry.dev-dependencies]
pytest-black-ng = ">=0.4.0"
pytest-invenio = ">=2.1.6,<3.0.0"
Sphinx = ">=4.5.0"
pydocstyle = ">=6.1.1,<6.2"
autoflake = ">=1.3.1"
mock = ">=4.0.3"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."invenio_base.apps"]
invenio_sip2 = "invenio_sip2:InvenioSIP2"
[tool.poetry.plugins."invenio_base.api_apps"]
invenio_sip2 = "invenio_sip2:InvenioSIP2"
[tool.poetry.plugins."invenio_base.blueprints"]
invenio_sip2 = "invenio_sip2.views.views:blueprint"
[tool.poetry.plugins."invenio_base.api_blueprints"]
invenio_sip2 = "invenio_sip2.views.rest:api_blueprint"
[tool.poetry.plugins."flask.commands"]
selfcheck = "invenio_sip2.cli:selfcheck"