-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.cfg
82 lines (71 loc) · 1.8 KB
/
setup.cfg
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
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2015-2022 CERN.
# Copyright (C) 2021 Northwestern University.
# Copyright (C) 2022 RERO.
# Copyright (C) 2022-2024 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
[metadata]
name = invenio-db
version = attr: invenio_db.__version__
description = Database management for Invenio.
long_description = file: README.rst, CHANGES.rst
keywords = invenio database
license = MIT
author = CERN
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/invenio-db
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
alembic>=1.10.0
Flask-Alembic>=3.0.0
Flask-SQLAlchemy>=3.0
invenio-base>=1.2.10
SQLAlchemy-Continuum>=1.3.12
SQLAlchemy-Utils>=0.33.1
SQLAlchemy[asyncio]>=2.0.0
[options.extras_require]
tests =
six>=1.0.0
pytest-black-ng>=0.4.0
cryptography>=2.1.4
pytest-invenio>=1.4.5
Sphinx>=4.5.0
mysql =
pymysql>=0.10.1
postgresql =
psycopg2-binary>=2.8.6
versioning =
[options.entry_points]
invenio_base.api_apps =
invenio_db = invenio_db:InvenioDB
invenio_base.apps =
invenio_db = invenio_db:InvenioDB
[aliases]
test = pytest
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401, D202
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --cov=invenio_db --cov=invenio_db/alembic --cov-report=term-missing
testpaths = tests invenio_db