forked from inveniosoftware/datacite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (59 loc) · 1.65 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
# This file is part of DataCite.
#
# Copyright (C) 2015, 2016 CERN.
# Copyright (C) 2024, California Institute of Technology
#
# DataCite is free software; you can redistribute it and/or modify it
# under the terms of the Revised BSD License; see LICENSE file for
# more details.
[metadata]
name = datacite
license= BSD
version = attr: datacite.__version__
description = "A Python client for DataCite MDS and REST APIs."
long_description = file: README.rst, CHANGES.rst
keywords = datacite doi
author = Invenio Collaboration
author_email = [email protected]
url = https://github.com/inveniosoftware/datacite
classifiers =
Programming Language :: Python :: 3
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Topic :: Utilities
[options]
include_package_data = True
packages = find:
zip_safe = False
install_requires =
jsonschema>=3.0.0
lxml>=4.5.2
requests>=2.12.2
idutils>=1.0.0
importlib-metadata>=6.11.0
[options.extras_require]
tests =
responses>=0.10.6
mock>=1.3.0
pytest-invenio>=1.4.0
pytest-black-ng>=0.4.0
datacite[docs]
docs = Sphinx>=4.5.0
all = datacite[tests]
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401
[isort]
profile=black
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=datacite --cov-report=term-missing
testpaths = docs tests datacite
norecursedirs = tests/example
markers = pw: tests that require a password (will only run with '--runpw' option)