-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
65 lines (55 loc) · 1.64 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
[metadata]
name= invenio-subjects-cessda
version = attr: invenio_subjects_cessda.__version__
description = invenio-subjects-cessda vocabularies
long_description_content_type= text/markdown
long_description = file:README.md, CHANGES.md
keywords=invenio inveniordm subjects cessda
license=MIT
author=KTH Royal Institute of Technology
platforms=any,
url=https://github.com/Samk13/invenio-subjects-cessda
classifiers=
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
[options]
include_package_data = True
packages = find:
python_requires = >=3.9
zip_safe = False
[options.extras_require]
tests =
pytest-black-ng>=0.4.0
pytest-invenio>=2.1.7
aiohttp>=3.9.3
click>=8.1.7
PyYAML>=6.0.1
wheel>=0.42.0
# exclude the fetching mechanisms and other unrelated parts from the package
# [options.packages.find]
# where = invenio_subjects_cessda
# include = invenio_subjects_cessda.vocabularies.*
[options.entry_points]
console_scripts =
invenio-subjects-cessda = main:main
invenio_rdm_records.fixtures =
invenio_subjects_cessda = invenio_subjects_cessda.vocabularies
[check-manifest]
ignore =
.*-requirements.txt
*.bin
*.gitkeep
[bdist_wheel]
universal = 1
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_subjects_cessda --cov-report=term-missing
filterwarnings = ignore::pytest.PytestDeprecationWarning
testpaths = tests invenio_subjects_cessda
[isort]
profile=black
[pydocstyle]
add_ignore = D401, E501, D100