-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
125 lines (112 loc) · 3.14 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
[project]
name = "invenio-group-collections-kcworks"
version = "0.1.0-dev1"
description = "Provides collections administered by remote social groups for the Knowledge Commons Works instance of InvenioRDM"
readme = "README.md"
authors = [{ name = "MESH Research", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"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", "groups", "social", "research"]
dependencies = [
"alembic",
"click>=7.0",
"docker-services-cli",
"invenio-administration",
"invenio-app-rdm[opensearch2]<13.0.0",
"invenio-cli",
"invenio-communities",
"opensearch-dsl",
"psycopg2",
"unidecode",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"check-manifest",
"pip-tools",
"pytest>=7.3.2",
"pytest-invenio",
"pytest-runner",
"requests-mock",
]
tests = [
"pytest>=7.3.2",
"pytest-invenio",
"pytest-runner",
"requests-mock",
]
[project.urls]
Homepage = "https://github.com/MESH-Research/invenio-group-collections-kcworks"
[tool.pytest.ini_options]
addopts = "--doctest-glob='*.rst' --doctest-modules"
testpaths = [ "tests", "invenio_group_collections_kcworks" ]
[project.scripts]
invenio-group-collections-kcworks = "invenio_group_collections_kcworks.cli:cli"
[project.entry-points."invenio_base.apps"]
invenio_group_collections_kcworks = "invenio_group_collections_kcworks.ext:InvenioGroupCollections"
[project.entry-points."invenio_base.api_apps"]
invenio_group_collections_kcworks = "invenio_group_collections_kcworks.ext:InvenioGroupCollections"
[project.entry-points."invenio_base.api_blueprints"]
invenio_group_collections_kcworks = "invenio_group_collections_kcworks.views:create_api_blueprint"
[tool.check-manifest]
ignore = [
"PKG-INFO",
".egg-info",
".egg-info/*",
"setup.cfg",
".DS_Store",
".hgtags",
".hgsigs",
".hgignore",
".gitignore",
".bzrignore",
".gitattributes",
".github/*",
".travis.yml",
"Jenkinsfile",
"* .mo",
"dist/*",
"build/*",
"invenio_group_collections_kcworks/dependencies/*",
"*.gitkeep",
]
[tool.bumpver]
current_version = "0.1.0-dev1"
version_pattern = "MAJOR.MINOR.PATCH[-TAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
]
"README.md" = [
"Version {version}",
]
"VERSION" = [
'^"{version}"',
]
"invenio_group_collections_kcworks/__init__.py" = [
'^__version__ = "{version}"',
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.bdist_wheel]
universal = 1