mirror of
https://github.com/Cian-H/invenio-config-iform.git
synced 2025-12-22 21:11:57 +00:00
126 lines
3.4 KiB
Python
126 lines
3.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2020 Mojib Wali.
|
|
#
|
|
# invenio-config-tugraz is free software; you can redistribute it and/or
|
|
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
# details.
|
|
|
|
"""invenio module that adds tugraz configs."""
|
|
|
|
import os
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
readme = open('README.rst').read()
|
|
history = open('CHANGES.rst').read()
|
|
|
|
tests_require = [
|
|
'check-manifest>=0.25',
|
|
'coverage>=4.0',
|
|
'isort>=4.3.3, <5.0.0',
|
|
'pydocstyle>=2.0.0',
|
|
'pytest-cov>=2.5.1',
|
|
'pytest-pep8>=1.0.6',
|
|
'pytest-invenio>=1.2.1',
|
|
]
|
|
|
|
extras_require = {
|
|
'docs': [
|
|
'Sphinx>=1.5.1',
|
|
],
|
|
'mysql': [
|
|
'invenio-db[mysql]>=1.0.0',
|
|
],
|
|
'postgresql': [
|
|
'invenio-db[postgresql]>=1.0.0',
|
|
],
|
|
'sqlite': [
|
|
'invenio-db>=1.0.0',
|
|
],
|
|
'tests': tests_require,
|
|
}
|
|
|
|
extras_require['all'] = []
|
|
for reqs in extras_require.values():
|
|
extras_require['all'].extend(reqs)
|
|
|
|
setup_requires = [
|
|
'Babel>=1.3',
|
|
'pytest-runner>=3.0.0,<5',
|
|
]
|
|
|
|
install_requires = [
|
|
'Flask-BabelEx>=0.9.4',
|
|
'invenio_oauthclient>=1.2.1',
|
|
|
|
]
|
|
|
|
packages = find_packages()
|
|
|
|
|
|
# Get the version string. Cannot be done with import!
|
|
g = {}
|
|
with open(os.path.join('invenio_config_tugraz', 'version.py'), 'rt') as fp:
|
|
exec(fp.read(), g)
|
|
version = g['__version__']
|
|
|
|
setup(
|
|
name='invenio-config-tugraz',
|
|
version=version,
|
|
description=__doc__,
|
|
long_description=readme + '\n\n' + history,
|
|
keywords='invenio, config, Tu Graz',
|
|
license='MIT',
|
|
author='Mojib Wali',
|
|
author_email='mojib.wali@tugraz.at',
|
|
url='https://github.com/mb-wali/invenio-config-tugraz',
|
|
packages=packages,
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
platforms='any',
|
|
entry_points={
|
|
'invenio_base.apps': [
|
|
'invenio_config_tugraz = invenio_config_tugraz:invenioconfigtugraz',
|
|
],
|
|
'invenio_base.blueprints': [
|
|
'invenio_config_tugraz = invenio_config_tugraz.views:blueprint',
|
|
],
|
|
'invenio_i18n.translations': [
|
|
'messages = invenio_config_tugraz',
|
|
],
|
|
'invenio_config.module': [
|
|
'invenio_config_tugraz = invenio_config_tugraz.config',
|
|
],
|
|
# TODO: Edit these entry points to fit your needs.
|
|
# 'invenio_access.actions': [],
|
|
# 'invenio_admin.actions': [],
|
|
# 'invenio_assets.bundles': [],
|
|
# 'invenio_base.api_apps': [],
|
|
# 'invenio_base.api_blueprints': [],
|
|
# 'invenio_base.blueprints': [],
|
|
# 'invenio_celery.tasks': [],
|
|
# 'invenio_db.models': [],
|
|
# 'invenio_pidstore.minters': [],
|
|
# 'invenio_records.jsonresolver': [],
|
|
},
|
|
extras_require=extras_require,
|
|
install_requires=install_requires,
|
|
setup_requires=setup_requires,
|
|
tests_require=tests_require,
|
|
classifiers=[
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'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.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Development Status :: 1 - Planning',
|
|
],
|
|
)
|