-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
134 lines (116 loc) · 3.4 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[project]
name = "invenio-remote-user-data-kcworks"
version = "0.6.0-beta2"
description = "An extension to draw user data from remote sources into the Knowledge Commons Works InvenioRDM instance"
readme = "README.md"
authors = [{ name = "Mesh Research", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["invenio", "inveniordm", "users", "research"]
requires-python = ">=3.9"
dependencies = [
"invenio-group-collections-kcworks",
"celery",
"click",
"deepdiff",
"invenio-app-rdm<13.0.0",
"invenio-queues",
"invenio-search",
"invenio-utilities-tuw",
"opensearch-dsl",
]
[project.optional-dependencies]
dev = [
"check-manifest",
"pipenv",
"pip-tools",
"pytest>=7.3.2",
"pytest-invenio",
"pytest-runner",
"requests-mock",
]
test = ["coverage"]
[project.urls]
Homepage = "https://github.com/MESH-Research/invenio-remote-user-data-kcworks"
[project.scripts]
user-data = "invenio_remote_user_data_kcworks.cli:cli"
[project.entry-points."flask.commands"]
user-data = "invenio_remote_user_data_kcworks.cli:cli"
[project.entry-points."invenio_base.apps"]
invenio_remote_user_data_kcworks = "invenio_remote_user_data_kcworks.ext:InvenioRemoteUserData"
[project.entry-points."invenio_base.api_apps"]
invenio_remote_user_data_kcworks = "invenio_remote_user_data_kcworks.ext:InvenioRemoteUserData"
[project.entry-points."invenio_base.api_blueprints"]
invenio_remote_user_data_kcworks = "invenio_remote_user_data_kcworks.views:create_api_blueprint"
[project.entry-points."invenio_queues.queues"]
invenio_remote_user_data_kcworks = "invenio_remote_user_data_kcworks.queues:declare_queues"
[project.entry-points."invenio_celery.tasks"]
invenio_remote_user_data_kcworks = "invenio_remote_user_data_kcworks.tasks"
[tool.pytest.ini_options]
addopts = "--doctest-glob='*.rst' --doctest-modules"
testpaths = [ "tests", "invenio_remote_user_data_kcworks" ]
[tool.check-manifest]
ignore = [
"* .mo",
"*.bin",
"*.gitkeep",
".*-requirements.txt",
".bzrignore",
".DS_Store",
".egg-info",
".egg-info/*",
".gitattributes",
".github/*",
".gitignore",
".hgsigs",
".hgtags",
".hgignore",
".travis.yml",
"Jenkinsfile",
"PKG-INFO",
"setup.cfg",
"*.lock",
"Pipfile",
".vscode/*",
]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.bumpver]
current_version = "0.6.0-beta2"
version_pattern = "MAJOR.MINOR.PATCH[-TAGNUM]"
commit_message = "Bumping version {old_version} -> {new_version}."
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = false
tag = false
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^version = "{version}"',
'^current_version = "{version}"',
]
"README.md" = [
'^Version {version}',
]
VERSION = [
'^"{version}"',
]
"invenio_remote_user_data_kcworks/__init__.py" = [
'^__version__ = "{version}"',
]
[tool.pydocstyle]
add_ignore = "D401"