mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
13 lines
272 B
Python
13 lines
272 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="custom_invenio_plugin",
|
|
version="1.0.0",
|
|
packages=["custom_invenio_plugin"],
|
|
entry_points={
|
|
"invenio_base.apps": [
|
|
"custom_invenio_plugin = custom_invenio_plugin:init_app",
|
|
],
|
|
},
|
|
)
|